function openFullScreen(page){
var yes = 1;
var no = 0;
var menubar = no;
var scrollbars = no; 
var locationbar = no; 
var directories = no; 
var resizable = no; 
var statusbar = no; 
var toolbar = no;

var screenWidth;
var screenHeight;

if (screen.width > 1280)
{
	screenWidth = 1152;
	screenHeight = screenWidth*0.76;
}
else
{
	screenWidth = screen.width*0.90;
	screenHeight = screenWidth*0.575;//76
}

var winXLoc = (screen.width-screenWidth)/2.0;
var winYLoc = (screen.height-screenHeight)/2.0-20;


windowprops = "width="+screenWidth+",height="+screenHeight+",top="+winYLoc+",left="+winXLoc+",screenX="+winXLoc+",screenY="+winYLoc;

windowprops += (menubar ? ",menubars" : "") +
(scrollbars ? ",scrollbars" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directories" : "") +
(resizable ? ",resizable" : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");

window.open(page,'smartStrategy', windowprops);

}
//-->

function resizeWin()
{
	if (self.innerWidth)
	{
		frameWidth = self.innerWidth;
		frameHeight = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
		frameWidth = document.documentElement.clientWidth;
		frameHeight = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		frameWidth = document.body.clientWidth;
		frameHeight = document.body.clientHeight;
	}
	else return;
	//newWidth = self.screen.width*0.94;
	//newHeight = newWidth*2.34;
	newWidth = 770;
	newHeight = self.screen.height*0.9;
	parent.window.resizeTo(newWidth,newHeight);
	parent.window.moveTo(self.screen.width*0.03,self.screen.height*0.03);
}

function submitSearchForm(selection){
	if (selection==1) {
		document.form1.vModule.value=0;
		document.form1.vLevel.value=0;
	} else if (selection == 2){
		form1.vLevel.value=0;
	}
	document.form1.submit();
}

function submitGlossaryForm(selection){
	
	document.form1.submit();
}

function openNav(){
		
		tdModule.width.value="70%";
		
	}
	
function colapsNav(){
tdModule.width.value="84%";

}
