// Pop up window
function popupWindow(theURL,winName,features)
{
	newWindow=window.open(theURL,winName,features);
	newWindow.focus();
}