// JavaScript function for popup edit content
function content_calldiv(name,id)
{ 
	var browser=navigator.appVersion;
	if(browser.indexOf("MSIE 6." ) >= 0)
	{
		var width=self.screen.width-21;
		var height=(document.body.scrollHeight+100);
	}
	else if(browser.indexOf("MSIE 7." ) >= 0)
	{
		var width=self.screen.width-22;
		var height=(document.body.scrollHeight+100);
	}
	else
	{
		var width=self.screen.width-3;
		var height=(document.body.scrollHeight+100);
	}	
	document.getElementById("greybox_div").style.width="100%";
	document.getElementById("greybox_div").style.height=height+"px";
	document.getElementById("greybox_div").style.float="left";
	document.getElementById('greybox_div').style.display='block';	

	if(name=="cms"){
		document.getElementById("ifrm_label").src ="inc.cms_content_update.php?content_id=" + id;
		document.getElementById("ifrm_label").width="850";
		document.getElementById("ifrm_label").height="600";
	}
	if(name=="product"){
		document.getElementById("ifrm_label").src ="produtcs_video.php";
		document.getElementById("ifrm_label").width="650px";
		document.getElementById("ifrm_label").height="480px";
	}
	
}
function pageScroll() {
    	window.scrollBy(0,-50); 
		scrolldelay = setTimeout('pageScroll()',10); 
}
function stopScroll() {
    	window.clearTimeout(scrolldelay);
}
