// JavaScript Document
function photoWindow(url, winWidth, winHeight) 
{
	var myoptions = "left=150, top=50, screenx=150, screeny=50, width="+winWidth+", height="+winHeight+", resizable=no, scrollbar=no, maximize=null";
	var newWin = open("","",myoptions);
	newWin.document.write("<p align=center><img src="+url+"></p>");
	newWin.document.write("<title>Photo Gallery - Montfort Inter College, Mahanagar, Lucnow</title><body topmargin=0, leftmargin=0, bgcolor=#FFCC33><div align=center><a href='javascript:window.close();'>Close Window</a></div></body>");
	
}