// shared functions
function openWindow(theURL,winName,winWidth,winHeight)
{
	   window.open(theURL,winName,'toolbar=no,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=' + winWidth + ',height=' + winHeight + ',left=0,top=0');
}
