function popWin(url,WinName,displayParams)	{ 
newWin = window.open('',WinName,displayParams);
newWin.document.write("<html><head><title>The Lodge: Destination Outerspace<\/title><\/head><body style='padding:0px; margin:0px; padding-top:2px; background-color:#fcfcfc;'><div align='center'><img border='0' src='");
newWin.document.writeln(url);
newWin.document.write("'><\/div><div align='center' style='margin-top:10px; margin-bottom:10px;'><a href='javascript:void(0);' onclick='javascript:window.close();' style='color:#999; font-family:arial, verdana, sans-serif; font-size:12px;'>Close this window<\/a><\/div><\/body><\/html><!-- Jmoran\/Burntsand 2006 -->");
}

function newWindow(url,size) {
	window.open(url,'newWin',size)
}