//var win;
var win=null;
function popImg(isrc,iwidth,iheight){
if(win!=null){
win.close();
}
var wwidth=iwidth;
var wheight=iheight;
var sX=0;
var sY=0;
var wstring="width=" + wwidth;
var hstring="height=" + wheight;
var wparams=wstring + "," + hstring + ",left=" + sX  + ",top=" + sY + ",toolbar=0,resizable=0,scrollbars=0,location=0,status=0";
win=window.open("","popwin",wparams);
//win=window.open("blank.html","popwin",wparams);
//win=window.open(isrc,"popwin",wparams);
win.document.open();
win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"\r\t\t"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">\r<html lang="en">\r<head>\r\t<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">\r\t<title>Maui Mountain Cruisers &raquo; The Adventure &raquo; Gallery<\/title>\r<\/head>\r\r<body leftmargin="0" rightmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#220000">\r\t<div style="text-align:center;"><a href="javascript:self.close();" title="Click anywhere to close"><img src="'+isrc+'" width="'+iwidth+'" height="'+iheight+'" border="0"><\/a><\/div>\r<\/body>\r<\/html>');
win.focus();
}