var wSignup;
var locwSignup;
var servername=window.location.hostname;
   
function locshowSignup() 
 {
 
    if (locwSignup == undefined || locwSignup.closed)
     locwSignup = window.open('http://'+ servername +'/register/registerpost.aspx?companyID=54', 'signup', 'width=660,height=760,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no');
    locwSignup.focus();
    };

function locshowSignupSSL() 
{
  if (locwSignup == undefined || locwSignup.closed)
  locwSignup = window.open('https://' + servername +  '/register/registerpost.aspx?companyID=54' , 'signup', 'width=660,height=760,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no');
	locwSignup.focus();};		
	
function showSignup() {
	if (wSignup == undefined || wSignup.closed)
         wSignup = window.open('/account/register.aspx', 'signup', 'width=660,height=760,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no');
	wSignup.focus();
};

function logout() {
	alert ('Logout Function is not implemented');
}


    
