function isopopup(url) {
	newwindow2=window.open('','name','height=300,width=300');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>popup</title><script type="text/javascript">function isoload\(newurl\)\{self.opener.location = newurl\;self.close()\;}<\/script>');
	tmp.write('<style>body {background: #1E1E12 url(gfx/popup_bg.jpg) top center no-repeat; font-family:verdana,arial,sans-serif; color:#963E06; font-size:0.8em; letter-spacing:-1px;} #popup {height: 100%; padding-top: 90px;} h2 {font-size:1em; font-weight: bold; color: #64643E} a {color:#963E06;} a:hover {text-decoration:none;}</style>');
	tmp.write('</head><body><div id="popup"><h2>You are about to leave isopodlabs.net!</h2><p>Please note that Isopod Labs, LLC is not responsible for the content and does not guarantee the privacy and security of any data collected by the website you are about to visit.</p><h2>Would you like to continue?</h2>');
	tmp.write('<p><a href=\"javascript\:isoload(\'');
	tmp.write(url);
	tmp.write('\'\)\">YES<\/a><\/p>');
	tmp.write('<p><a href="javascript:self.close()">NO</a></p>');
	tmp.write('</div></body></html>');
	tmp.close();
}

