// JavaScript Document: popupWindow

function pop(url) 
	{
	scrolling = 'yes'; // Scrolling Yes/No/Auto
	resize = 'yes'; // Scrolling Yes/No
	pagename = 'rego'; // popup height
	popht = 700; // popup height
	popwth = 750; // popup width
	scrleft = (screen.width / 2) - (popwth /2); //centres horizontal
	scrtop = (0) + 40; //centres vertical
	window.open(url,pagename,'top=' + scrtop + ',left=' + scrleft + ',height=' + popht + ',width=' + popwth + ',scrollbars=' + scrolling + ',resizable=' + resize + ',status=0,menubar=0,toolbar=0');
	}
	




