﻿
function firstWindow(page) {
OpenWin = this.open(page, "CtrlWindow", "width=750,height=600,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,left=50,top=50");
}


function EmailWindow(page) {
OpenWin = this.open(page, "CtrlWindow", "width=450,height=450,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,left=50,top=50");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function UserCommentsWindow(page)
{
    var NewWindow=this.open(page, "newWin", "width=600,height=350,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,left=50,top=50");
    NewWindow.focus();
    return false;
}
