function NewWindow(x,y) {

var PX=window.open("","newwin",config="height=560,width=740,scrollbars=yes,resizeable");

PX.document.write("<html><head>");
PX.document.write("<title> St. Seraphim Photo Album </title>");
PX.document.write("<link rel='stylesheet' href='../includes/popup.css' type='text/css' media='screen'>");
PX.document.write("</head>");
PX.document.write("<body>");
PX.document.write("<center>");
PX.document.write("<img src='"+x+"' />");
PX.document.write("<br />");
PX.document.write(y);
PX.document.write("<br /><br />");
PX.document.write("<a href='#' onClick='self.close()'>Close Window</a>");
PX.document.write("</center>");
PX.document.write("</body>");
PX.document.write("</html>");

PX.document.close();

}

/*
function NewWindow(x,y) {

var PX=window.open("","newwin",config="height=400,width=625,scrollbars=yes,resizeable");

PX.document.write("<html><head>");
PX.document.write("<title> St. Seraphim Photo Album </title>");
PX.document.write("<body bgcolor='#CC6633'>");
PX.document.write("<center>");
PX.document.write("<img src='"+x+"'>");
PX.document.write("<br /><b><font color='#FFFFFF'>");
PX.document.write(y);
PX.document.write("</font></b>");
PX.document.write("<br /><br />");
PX.document.write("<a href='#' onClick='self.close()'>Close Window</A><P>");
PX.document.write("</center>");
PX.document.write("</body>");
PX.document.write("</html>");

PX.document.close();

}
*/

function NewPage(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 4;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar,scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
