/* ############### US ################## 
	Last Modified: FEB.19.07		Alexander Gilli
*/
function popImg(url,name,width,height,scroller)
{
	width = width + 6;
	height = height + 40;
	var outStr = 'height=' + height + ',width=' + width;
   
	if (scroller != 'true')
	{
		outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,resizable=no,';
	}else {
		outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no';
	}
	
	imageWindow = window.open('', name, outStr);
	imageWindow.document.open();
	imageWindow.document.write("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>");
	imageWindow.document.write("<html><head><title>Trend Micro USA</title>");
	imageWindow.document.write("<meta http-equiv='content-language' content='en'/><meta http-equiv='Content-Type' content='text/html; charset=UTF-8'/><meta http-equiv='Content-Script-Type' content='text/javascript'/><meta http-equiv='Content-Style-Type' content='text/css'/>");
	imageWindow.document.write("<link rel='stylesheet' href='/css/us/popup.css' type='text/css' media='screen' /></head>");
	imageWindow.document.write("<body>");
	imageWindow.document.write("<p class='closewindow_rt'><a href='javascript:self.close();'>Close Window</a></p>");
	imageWindow.document.write("<p class='bigimg'><img src='");
	imageWindow.document.write(url);
	imageWindow.document.write("'border='0' alt='Trend Micro USA' /></p>");
	imageWindow.document.write("</body></html>");
	imageWindow.focus()   
	imageWindow.document.close();
}

