// JavaScript Document

function Construction(){
	
	nw = window.open("","popWin","width=480,height=450")
	nw.document.open();
	nw.document.write("<html><body><br><br><h1 align='center'>Under Construction</h1></br></br>");
	nw.document.write("<center><br><br><br><br><br><br><br><br><br><input type=button value=Close onclick='window.close();'></br></br></br></br></br></br></br></br></br></center>");
	nw.document.write("</body></html>");
	nw.document.close();
}
