// JavaScript Document


var newwindow = ''
function popitup(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url;
    newwindow.focus(); }
else {
    newwindow=window.open(url,'htmlname','width=500,height=380,resizable=0');}
}

function tidy() {
if (newwindow.location && !newwindow.closed) {
   newwindow.close(); }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}

