// JavaScript Document
function OpenWnd(url,w,h){
	attr = "width=" + w + "height=" + h;
	wnd = window.open(url,'image',attr);
	wnd.resizeTo(w,h) ;
	wnd.focus();
}