<!--

// slide show popup

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=475,height=550')
}



function popWindow(url, width, height) {
        var Win = window.open(url,"popWindow",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,status=no' );
}

function openWin(theURL,winName,features) {
  w=window.open(theURL,winName,features);
  w.focus();
}

/*
if(top.location != location){
	top.location.href = document.location.href;
}
*/

function openWinHelp(URL){
   open(URL,"_blank","left=150,top=150,width=640,height=480,scrollbars=yes,resizable=yes");
}



//-->


