 
function mysubmit(x){
if(x!='')
document.form1.submit(x);
}

function logoff(){
document.logoff.submit();
}

function popx(theURL,winName,width,height,features) { 

	if(window.screen){
		
		w=width;
		h=height;
		x=(screen.width-w)/2;
		y=(screen.height-h)/2;
	}else{
		x=200;
		y=200;
		w=w;
		h=y;
	}
	winfeatures=("top="+y+",left="+x+",width="+w+",height="+h+","+features);
	window.open(theURL,winName,winfeatures);
}

function popL(theURL,winName,width,height,features) { 

	if(window.screen){
		
		w=width;
		h=height;
		x=50;
		y=(screen.height-h)/4;
	}else{
		x=0;
		y=100;
		w=w;
		h=y;
	}
	winfeatures=("top="+y+",left="+x+",width="+w+",height="+h+","+features);
	window.open(theURL,winName,winfeatures);
}

function popwin0(theURL,winName,width,height,features) { 

	if(window.screen){
		
		w=width;
		h=height;
		x=0;
		y=0;
	}else{
		x=0;
		y=0;
		w=w;
		h=y;
	}
	winfeatures=("top="+y+",left="+x+",width="+w+",height="+h+","+features);
	window.open(theURL,winName,winfeatures);
}

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

