//****************************************************
//This function opens the new window with the menubar enabled and the height and width set depending upon the parent window size..
//****************************************************
function NewWindowStnd(mypage,myname,pos)  {
	var screenW = screen.availWidth;
	var screenH = screen.availHeight;
	var windowW = screenW * .80;
	var windowH = screenH * .60;
	if	(pos=="center")  {
		LeftPosition=(screenW)?(screenW-windowW)/2:100;
		TopPosition=(screenH)?(screenH-windowH)/2:100;
	}	
	else if ((pos!="center" && pos!="random") || pos==null)  {
		LeftPosition=0;TopPosition=20
	}
	settings='width='+windowW+',height='+windowH+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=yes,directories=no,status=no,menubar=yes,toolbar=yes,resizable=yes'; 
	var win=window.open(mypage,myname,settings);
	//win.focus();
} 