
function openArbPhotoWindow(imgName, imgWidth, imgHeight) {
	
	var width = imgWidth + 34;
	var height = imgHeight + 35;
	var top = 50;
	var left = 50;
	
	var windowFeatures = "width=" + width + ",height=" + height +
	     ",screenX=" + left + ",screenY=" + top + ",left=" + left +
		 ",top=" + top + ",status=no,location=no,directories=no,menubar=no,toolbar=no,scrollbars=no,resizable";
	
	arbPhotoWindow = window.open("", "arbphotowin", windowFeatures);
	
	timeout_fn = "createArbPhotoPage('" + imgName + "'," + imgWidth + "," + imgHeight + ")";
	
	setTimeout(timeout_fn, 50);
}

function createArbPhotoPage(imgName, imgWidth, imgHeight) {
	
	var styleFile = "/css/global.css";
	
	iconTop = imgHeight + 10;
	iconLeft = imgWidth - 110;
	
	var pageTxt = "<html><head><title>letrainbleu newsletter signup</title><link href='" + styleFile + "' rel='stylesheet' type='text/css' /></head><body id='optin_form'>";
	
	pageTxt += "<div><table cellspacing='0'>";
	pageTxt += "<tbody><tr><td class='title'>Signup for the Le Train Bleu mailing list:</td></tr>";
	pageTxt += "<tr><td class='form_content'><form name='ccoptin' action='http://visitor.constantcontact.com/d.jsp' target='_blank' method='post'>";
	pageTxt += "<input type='hidden' name='m' value='1101130318556' />";
	pageTxt += "<input type='hidden' name='p' value='oi' /><span class='label'>Email: </span>";
	pageTxt += "<input type='text' class='text_input' name='ea' size='20' value='' />";
	pageTxt += "<input type='submit' name='go' value='Go' class='submit' />";
	pageTxt += "</form></td></tr></tbody></table></div>";
		
	pageTxt += "</body></html>";
	
	arbPhotoWindow.document.write(pageTxt);
	arbPhotoWindow.document.close();

}