<!--
function popUp(strURL, strType, strWidth, strHeight) {
var newWin = null;
 if (newWin != null && !newWin.closed)
   newWin.close();
    var strOptions="";
 
 if (strType=="fixed")
    var strWidth=533;
    var strHeight=400;
   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=400;
    var strHeight=345;
   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=338;
	var strHeight=450;
	strOptions="top=100,left=200,width="+strWidth+",height="+strHeight;
 
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}

function verySmall(strURL, strType, strWidth, strHeight) {
var newWin = null;
 if (newWin != null && !newWin.closed)
   newWin.close();
    var strOptions="";
 
 if (strType=="small")
 	var strWidth=533;
	var strHeight=381;
	strOptions="top=100,left=200,width="+strWidth+",height="+strHeight;
 
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}

// -->