﻿// JScript File

function popupform(myform, url, windowname) 
{ 
//http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
// don't allow if we don't have the focus 
if (! window.focus)return true; 

// open the new window, 
window.open(url, windowname, "menubar=1,location=1,toolbar=1,resizable=1,status=1,scrollbars=1,width=1000,height=600");
window.moveTo(0,0); 
myform.target=windowname; 
return true; 
} 
function popupformDelete(myform, url, windowname) 
{ 
//http://www.javascript-coder.com/window-popup/javascript-window-open.phtml
// don't allow if we don't have the focus 
if (! window.focus)return true; 

// open the new window, 
window.open(url, windowname, "left=400,top=400,width=430,height=110");
windowname.moveTo(0,350); 
myform.target=windowname; 
return true; 
} 

function Logoff()
{
     FormsAuthentication.SignOut();
}

