function open_window(link,w,h)
	{
		var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes,status,toolbar=no,fullscreen=no,dependent=no,top=0,left=0,screenX=0";
		var rule = "<img src='"+link+"' alt='' />";
		msg = "<html><head></head>";
		msg += "<body bgcolor=#ffffff><div align='center'>" + rule +"</div></body></html>";
		newWin = window.open('','newWin',win);
		newWin.document.write(msg);
		newWin.document.close();
		newWin.focus();
	}