function openimg(url, w, h)	{
	h+=5;
	w+=5;
	var win = window.open("",w+h,"width="+w+", height="+h+", status=0, toolbar=0, menubar=0, resizable=1, scrollbars=0");
	win.document.open();	
	win.document.writeln('<html><body style="margin:0;padding:0"><a href="" onclick="window.close()"><img src="'+url+'" border="0"></a></body></html> ');
	win.document.close();
}

function openfly(url, w, h)	{
	h+=5;
	w+=5;
	var win = window.open("",w+h,"width="+w+", height="+h+", status=0, toolbar=0, menubar=1, resizable=1, scrollbars=0");
	win.document.open();	
	win.document.writeln('<html><body style="margin:0;padding:0"><a href="" onclick="window.close()"><img src="'+url+'" border="0"  hspace="5" vspace="5"></a></body></html> ');
	win.document.close();
}

function openwin(url, w, h)	{
	var w = 650;
	var h = 730;
	h+=5;
	w+=5;
	var win = window.open(url,w+h,"width="+w+", height="+h+", status=0, toolbar=0, menubar=0, resizable=1, scrollbars=0, screenX=100, screenY=50");
	win.screenX=100;
//	win.document.open( url );	
//	win.document.writeln('<html><body style="margin:0;padding:0"><a href="" onclick="window.close()"><img src="'+url+'" border="0"></a></body></html> ');
//	win.document.close();
}
