/* Use this syntax in the HTML:
   <a href="openWin('[url]',[width],[height]);">xxx</a> */
	 
function openWin(theURL,width,height) 
{
	window.open(theURL,'popup','width='+width+',height='+height+',toolbar=no,menubar=no,status=no,scrollbars=yes,resize=no,top=50,left=50');
}

