function opnWin(url){
	window.open(url,"win","width=550,height=550,scrollbars=0,resizable=1");
}
function winOpen(imgnam,imgwidth,imgheight){
	
	winwidth = imgwidth + 4;
	winheight = imgheight + 120;

	imgwin = window.open("","imgwin","width=" + winwidth + ",height=" + winheight + ",scrollbars=0,resizable=0");
	imgwin.document.writeln("<html>\n<head><title>Glimpses at the INFOCOMM 2003 - Kolkata</title>\n</head>\n");
	imgwin.document.writeln("<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\">\n");
	imgwin.document.writeln("<center>\n<img src=\"" + imgnam + "\" border=\"0\" width=\"" + imgwidth + "\" width=\"" + imgheight + "\" vspace=\"2\" hspace=\"0\"><br>\n");
	imgwin.document.writeln("<form><input type=\"button\" value=\"Close Window\" onClick=\"self.close()\"></form></center>\n");
	imgwin.document.writeln("</body>\n</html>");
	imgwin.document.close();
	
}
function openWindow(url){
	window.open(url,"win","width=700,height=500,scrollbars=0,resizable=0,statusbar=0");
}