function MM_openBrWindow(theURL,w,h) { //v2.0
	var wleft = (screen.width-w)/2
	var wtop = (screen.height-h)/2-20
	var wprop = "left=" + wleft + ",top=" + wtop + ",width=" + w + ",height=" + h + ",resizable=no,scrollbars=no,toolbar=no,location=no,status=no,menubar=no"
	win=window.open(theURL,'',wprop);
}

function openwindow(u,v,w,h){
    return window.showModalDialog(u,v,"dialogWidth=" + w + ";dialogHeight=" + h + ";center=yes;help=no;status=no;scrollbars=no");
}