function wOpen(file,w,h)
{
	jpgWindow=window.open("","jpg","menubar=yes, toolbar=no, scrollbars=no, status=no, width="+w+", height="+h+", resizable=no");
	jpgWindow.document.writeln("<HTML><HEAD><TITLE>ACTION</TITLE>");
	jpgWindow.document.writeln("<style type='text/css'>");
	jpgWindow.document.writeln("body {margin:0}");
	jpgWindow.document.writeln("</style>");
	jpgWindow.document.writeln("</HEAD>");
	jpgWindow.document.writeln("<body bgcolor='#222222' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0' onLoad='resize()'>");
	jpgWindow.document.writeln("<img src='http://www.adrenalinbrothers.com/action/"+file+".jpg' width="+w+" height="+h+" id='image'>");
	jpgWindow.document.writeln("</body></HTML>");
}

function wNew(file)
{
	jpgWindow=window.open("","jpg","menubar=yes, toolbar=no, scrollbars=no, status=no, width=600, height=600, resizable=no");
	jpgWindow.document.writeln("<HTML><HEAD><TITLE>Photo</TITLE>");
	jpgWindow.document.writeln("<style type='text/css'>");
	jpgWindow.document.writeln("body {margin:0}");
	jpgWindow.document.writeln("</style>");
	jpgWindow.document.writeln("</HEAD>");
	jpgWindow.document.writeln("<body bgcolor='#222222' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>");
	jpgWindow.document.writeln("<table width=600 height=600 cellpadding=0 cellspacing=0 border=0><tr><td width=600 height=600 align=center valign=middle>");
	jpgWindow.document.write("<img src='images/"+file+".jpg'>");
	jpgWindow.document.writeln("</td></tr></table>");
	jpgWindow.document.writeln("</body></HTML>");
}