function Popup(Url,PopupName,dl_width,dl_height){
	var x		= Math.round((screen.availWidth  - dl_width) / 2);
	var y		= Math.round((screen.availHeight - dl_height) / 2);
window.open(Url,PopupName,"left=" + x + ",top=" + y + ",width="+dl_width+",height="+dl_height+",memubar=no");
}

function Popup_scroll(Url,PopupName,dl_width,dl_height){
	var x		= Math.round((screen.availWidth  - dl_width) / 2);
	var y		= Math.round((screen.availHeight - dl_height) / 2);
	window.open(Url,PopupName);
/*window.open(Url,PopupName,"left=" + x + ",top=" + y + ", scrollbars=auto,resizable=no,width="+dl_width+",height="+dl_height+",memubar=no");*/
}

/*-----------------------------------------------------------------*/	 

function SetCookie(cookieName,cookieValue,nDays) {
 var today = new Date();
 var expire = new Date();
 if (nDays==null || nDays==0) nDays=1;

 expire.setTime(today.getTime() + 3600000*24*nDays);
 document.cookie = cookieName+"="+escape(cookieValue)+ ";expires="+expire.toGMTString()+";path=/;)";
}
