// JavaScript Document

function openPopup(url, wname, w, h) {
	t = screen.height/2 - h/2;
	l = screen.width/2 - w/2;
	popupw = window.open(url,wname,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+w+',height='+h+',top='+t+',left='+l);
	popupw.focus();
	res_h = parseInt(h) + 35;
	res_w = parseInt(w) + 10;
	popupw.resizeTo(res_w,res_h);
	//alert(url);
}
