var popup = null;
function popup_image(imgfile,w,h,wintitle)
{
	newsrc = "images/" + imgfile;
	winwidth = eval(w + 20);
	winheight = eval(h + 20);
	if (!wintitle)
		wintitle="J&L RV Rentals Photo";
	
	features = new String();
	features = "height=" + winheight;
	features += ",";
	features += "width=" + winwidth;
	features += ",";
	features += "resizable";
	popup = window.open('','popup',features);
	//make sure the popup window wasn't already open from another page
	if (popup.document.title)
	{
		popup.close();
		popup = window.open('','popup',features);
	}
	myHTML = "<html><head><title>" + wintitle;
	myHTML += "</title></head>\n";
	myHTML += "<body background='images/bg.gif'><center>\n";
	myHTML += "<img src='"+newsrc+"'>\n";
	myHTML += "</center></body></html>\n";
	popup.document.write(myHTML);
	popup.focus();
	
}
