// ********** COMMON JS FUNCTIONS  ********
function OpenPopup(pURL, pWidth, pHeight, pScrollbars){
	vWidth = pWidth;
	vHeight = pHeight;
	vleft=screen.width/2-(vWidth/2);
	vtop=screen.height/2-(vHeight/2)-27;
		
	vPopup = window.open(pURL, "popup", "toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=" + pScrollbars + ",resizable=0,width="+vWidth+",height="+vHeight+",top="+vtop+",left="+vleft);
	vPopup.focus();
}

jQuery(document).ready(function(){jQuery('div[url]').bind('click', function(){var gUrl=jQuery(this).attr('url');if(gUrl.length>0){window.location.href=gUrl}})});