function winpop(theFile)
{
	xSize = theFile.substr(theFile.length -10,3);
	ySize = theFile.substr(theFile.length -7,3);
	
	popwin = window.open('winpop.htm?' + theFile,'popwin','toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+xSize+',height=' + ySize);

	popwin.focus();

}
