openLink = function(url,target){
	if (target == '_blank'){
		return window.open(url);
	}
	else{
		return window.location.href = url;
	}
	
}
loadBackground = function (divObj,cursorType,bgcolor){
	divObj.style.background=bgcolor;
	divObj.style.cursor=cursorType;
}