// JavaScript Document
function openPopup(url, popName)
{	var height=screen.height;
	//var popHeigth = height-350;
	var popHeigth = 290;
	var popWidth = 345;

	var screenHeight=screen.height;
	popthisHeight=(screenHeight/2) - (popHeigth/2);
	var screenWidth=screen.width;
	popthisWidth=(screenWidth/2) - (popWidth/2);
	window.open(url, popName, 'top='+popthisHeight+', left='+popthisWidth+', width='+popWidth+',height='+popHeigth+',directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes');
	return false;
}