// Idea Gallery Popup Script

function galleryPopup(imageFile,caption) {
	largeImage = window.open('', 'newWindow', 'toolbar=0,resize=0,status=0,menubar=0,scrollbars=0,width=800,height=500');
	largeImage.moveTo(25,25);
	largeImage.document.open();
	largeImage.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>\n");
	largeImage.document.write("<html xmlns='http://www.w3.org/1999/xhtml'>\n");
	largeImage.document.write("<head>\n");
	largeImage.document.write("<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />\n");
	largeImage.document.write("<title>WindowRama Idea Gallery</title>\n");
	largeImage.document.write("<link href='galleryPopup.css' rel='stylesheet' type='text/css' />\n");
	largeImage.document.write("</head>\n");
	largeImage.document.write("<body>\n");
	largeImage.document.write("<div id='imageBox'><img src='" + imageFile + "' width='560' height='500' /></div>\n");
	largeImage.document.write("<div id='textBox'><p><img src='images/wr_logo.gif' alt='WindowRama' width='169' height='98' /></p>\n");
	largeImage.document.write("<p style='font-size:16px;'><strong>800-695-RAMA</strong></p>\n");
	largeImage.document.write("<p>" + caption + "</p>\n");
	largeImage.document.write("<form>\n");
	largeImage.document.write("<input name='Print' onclick='window.print();return false' type='button' value='Print' /><br />\n");
	largeImage.document.write("<input name='Close' onclick='window.close()' type='button' value='Close' />\n");
	largeImage.document.write("</form>\n");
	largeImage.document.write("<p style='font-size:10px;'>&copy;WindowRama. All rights reserved.</p>\n");
	largeImage.document.write("</div>\n");
	largeImage.document.write("</body>\n");
	largeImage.document.write("</html>");
	largeImage.document.close();
}

