// JavaScript Pop Up Windows
// - Eric King 
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}


//function terms()
//{
//		var tt=	"/user/tos.jsp";
//		window.open(tt,"_blank","toolbar=no, location=no, titlebar=no , minimizable=no, close=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, //width=700, height=750,top=100,left=160");	
//
//}


//function RemindPassword()
// {
//     window.open( "user/password.jsp?mode=login_form&first=yes", "pwdwin", "toolbar=no, directories=no, resize=yes, menubar=no, location=no, scrollbars=no, width=432, height=351, //maximize=no, top=72, left=72" );
//    }
