function openWin(DOM,IMG,W,H) 
{
	newWin = window.open('','pic','top=0,left=0,width='+W+',height='+H+'');
	if (!newWin.opener) newWin.opener = self;
	with (newWin.document)
	{
		open();	
		write('<html>');
		write('<head>');
		write('<title>Federal Laboratory Consortium for Technology Transfer</title>');
		//write('<link rel="stylesheet" type="text/css" media="screen" href="http://' + DOM + '/css/default.css" title="Default" />');
		write('</head>');
		write('<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" 	onLoad="self.focus()">');
			write('<div style="width:' + W + '">');
				write('<a href="javascript:self.close();"><img src="http://' + DOM + '/images/' + IMG + '" width="' + W + '" height="' + H + '" title="Close Window" alt="Close Window" style="border: 0;"/></a>');
			write('</div>');
		write('</body>');
		write('</html>');
		close();
	}
}
