/**************************************************************************************************************************************
POP UP FUNCTION
**************************************************************************************************************************************
FEATURES
1. toolbar - displays the browser buttons (forward, back, home, print, etc) 
2. location - displays the field that shows the URL for the window 
3. directories - displays other web browser directory buttons 
4. status - displays the browser status bar at the bottom 
5. menubar - displays the web browser menu bar 
6. resizable - allows user to change the size of the window 
7. scrollbars - provides scroll bars if the content is larger than the window size 
8. width=XX - specifies the width of the window when opened, in pixels 
9 height=YY - specifies the height of the window when opened, in pixels 
*/
function fPopUp(theURL,winName,features) { //v2.0
  win = window.open(theURL,winName,features);
  win.focus();
}

function Maximize(){
	window.resizeTo(screen.availWidth,screen.availHeight);
	self.moveTo(0,0);
}