function getURL(url, target){
	if(target == undefined) target = "_parent";
	window.open(url, target);
}

function mouseOver(obj){
	obj.style.cursor = 'pointer';
	obj.style.cursor = 'hand';
}