
var newWindow=new Object;
newWindow.closed=true;

function imgPage (imageName, details)
{
	if (!newWindow.closed){
		newWindow.close();
	}
	
	var window_features="width=575,height=650,status=0,menubar=0,toolbar=0,menubar=0,scrollbars=1,resizable=1";
	var pgTitle="SecurMAR LLC, 833 Shannon Drive, Crown Point, IN 46307, 219.661.8964";
	var logoImg="<div id=\"logo\"><img src=\"../imx/logo.gif\" alt=\"SecurMAR logo\" title=\"SecurMAR logo\" /></div>"
	var spanDetail="<span><a href=\"#\" onclick=\"self.close();\">Close Window</a></span>"
	var footDetail="<div id=\"picFooter\"><b>SecurMAR LLC</b> ~ 833 Shannon Drive, Crown Point, IN 46307 ~ 219.661.8964</div>";
	
	newWindow=window.open("","",window_features);
	newWindow.document.write("<html><head><title>" + pgTitle + "</title>");
	newWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/js_imx.css\" />");
	newWindow.document.writeln("</head><body>");
	newWindow.document.writeln("<div id=\"picFrame\">" + logoImg);
	newWindow.document.writeln("<img src=\"" + imageName + "\" alt=\" " + details + "\" title=\" "+details + "\" />");
	newWindow.document.writeln("<p>" + details + "</p>");
	newWindow.document.writeln(spanDetail);
	newWindow.document.writeln(footDetail);
	newWindow.document.write("</div>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
	newWindow.focus();
}

function imgPageL (imageName, details)
{
	if (!newWindow.closed){
		newWindow.close();
	}
	
	var window_features="width=800,height=600,status=0,menubar=0,toolbar=0,menubar=0,scrollbars=1,resizable=1";
	var pgTitle="SecurMAR LLC, 833 Shannon Drive, Crown Point, IN 46307, 219.661.8964";
	var logoImg="<div id=\"logo\"><img src=\"../imx/logo.gif\" alt=\"SecurMAR logo\" title=\"SecurMAR logo\" /></div>"
	var spanDetail="<span><a href=\"#\" onclick=\"self.close();\">Close Window</a></span>"
	var footDetail="<div id=\"picFooter\"><b>SecurMAR LLC</b> ~ 833 Shannon Drive, Crown Point, IN 46307 ~ 219.661.8964</div>";
	
	newWindow=window.open("","",window_features);
	newWindow.document.write("<html><head><title>" + pgTitle + "</title>");
	newWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/js_imx.css\" />");
	newWindow.document.writeln("</head><body id=\"picL\">");
	newWindow.document.writeln("<div id=\"picFrameL\">" + logoImg);
	newWindow.document.writeln("<img src=\"" + imageName + "\" alt=\" " + details + "\" title=\" "+details + "\" />");
	newWindow.document.writeln("<p>" + details + "</p>");
	newWindow.document.writeln(spanDetail);
	newWindow.document.writeln(footDetail);
	newWindow.document.write("</div>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
	newWindow.focus();
}
