/* 
This file holds all the scripts being used in the FOC website 
Created: 12/10/02
Author: Devanathan Sampathkumar
*/
// Hide Script from non JavaScript browsers <!--
// Script for launching a new javascript window centered on the browser
function newWindow(mypage, myname, w, h, scroll, tool){
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar='+tool+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) {win.window.focus();}
}
// End Hiding -->

