// ------------------------------------------------
<!--

// script for popup windows

function popwin(url) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=yes,width=600,height=550,left=50,top=20');");
}

// script for back buttons

function myFunctionName() {
    history.back();
}

 // script to hide from old browsers

function mainSites(x)
  { if (x != "") { self.location=x; } }

//-->
// ------------------------------------------------
