<!--
var Middle=null;
function pop_open(w,h,s_data){
	ww=w.substring(0,w.length);
	hh=h.substring(0,h.length);
	ss_data = s_data;
	setTimeout('go_s(ww,hh,ss_data)',1000);
}
function go_s(wi,he,s_data) {
	Middle = window.open(s_data, "middle_win", "toolbar=0,location=0,directories=0,status=yes,menubar=1,scrollbars=1,resizable=yes,copyhistory=0,width="+wi+",height="+he);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popupCenter (url,name,width,height) {
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    var options = "left=" + left + ",top=" + top + ",width=" +width + ",height=" +height;
    window.open(url,name,options);
}


//-->
