<!--
function popupWindow(url,wname,l,t,w,h,scrollbars,resizable) {
	if (wname.length == 0) {
		wname = "_blank";
	}
	w = parseInt(w);
	if (isNaN(w) || w<=0) {
		w = 320;
	}
	h = parseInt(h);
	if (isNaN(h) || h<=0) {
		h = 320;
	}
	var properties = "width="+String(w)+",height="+String(h)+",top="+String(t)+",left="+String(l)+",toolbar=no,location=no,directories=no,status=no,scrollbars="+(scrollbars ? "yes" : "no")+",resizable="+(resizable ? "yes" : "no")+",menubar=no";
	//alert(url);
	window.open(url,wname,properties);
}
//-->