<!--

// from mybke.com

theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
theObjects[i].outerHTML = theObjects[i].outerHTML; 
}

// from mybke.com

function popWindow(url, width, height) {
        var Win = window.open(url,"popWindow",'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no,status=no' );
}


// Bruce's slide show popup

function popupSlideShow(url) {
  window.open(url,'popupSlideShow','width=600,height=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no')
}

function openWin(theURL,winName,features) {
  w=window.open(theURL,winName,features);
  w.focus();
}

if(top.location != location){
	top.location.href = document.location.href;
}

// User registration Help via popup.php

function openWinHelp(URL){
   open(URL,"_blank","left=150,top=150,width=640,height=480,scrollbars=yes,resizable=yes");
}


//-->


