<!--
function popUp(strURL, strType, strWidth, strHeight) {
var newWin = null;
 if (newWin != null && !newWin.closed)
   newWin.close();
    var strOptions="";
 
 if (strType=="fixed")
    var strWidth=200;
    var strHeight=133;
   strOptions="top=100,left=200,width="+strWidth+",height="+strHeight;

newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
}

function popOdd(strURL, strType, strWidth, strHeight) {
var newWin = null;
 if (newWin != null && !newWin.closed)
   newWin.close();
    var strOptions="";
 
 if (strType=="odd")
    var strWidth=200;
    var strHeight=148;
   strOptions="top=100,left=200,width="+strWidth+",height="+strHeight;
 
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}

function downTown(strURL, strType, strWidth, strHeight) {
var newWin = null;
 if (newWin != null && !newWin.closed)
   newWin.close();
    var strOptions="";
 
 if (strType=="long")
 	var strWidth=200;
	var strHeight=175;
	strOptions="top=100,left=200,width="+strWidth+",height="+strHeight;
 
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}
// -->
