//open window script change height and width
function makeWindow(url) {  logonWindow=window.open("","logonwin","width=800,height=400,toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes");
        logonWindow.location.href=url
                if(logonWindow.opener == null) logonWindow.opener = window;
        logonWindow.opener.name = "opener";   
}

//off site window
function offSite(url) {
 logonWindow=window.open("","logonwin","width=400,height=400,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
        logonWindow.location.href=url
                if(logonWindow.opener == null) logonWindow.opener = window;
        logonWindow.opener.name = "opener";   
}



   function targetopener(mylink, closeme, closeonly)
   {
   if (! (window.focus && window.opener))return true;
   window.opener.focus();
   if (! closeonly)window.opener.location.href=mylink.href;
   if (closeme)window.close();
   return false;
   }

