<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
    var dynpop = window.open(theURL,winName,features);
    dynpop.focus();
    //winName.focus();
}

function dynpop(tdex,hIn,wIn,page,arg) {
	 
    //assumes a var previously set for the url, these are never ssl
    //alert ('page = ' + page);
    if (typeof(page) == 'undefined') {
    	 varUrl = myhttpServer + "/dynpop.php?tdex=" + tdex;
    } else {
        varUrl = myhttpServer + "/" + tdex + ".php"  ;
        if (typeof(arg) != 'undefined') {
        	varUrl += '?' + arg;
        }
    }
     
    var w = (typeof(wIn)=='undefined')?470:wIn;
    var h = (typeof(hIn)=='undefined')?466:hIn;
    MM_openBrWindow(varUrl,'Dynpop','width=' + w + ',height=' + h + ',scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no');
    return false;
}
//-->
