/*
Update this file to be a .jsp so that the paths can be rendered dynamically
*/

function closewin(){
window.close();
}


var newwin = '';
function popUp(url,w,h,offsite) {
//	if(!newwin.closed){
//		alert("a window was opened before");	
//		newwin.close();
//	}
if(offsite){
newwin = eval("window.open(url, 'newwin', 'scrollbars=yes,resizable=yes,menubar=yes,screenX=0,screenY=0,width="+w+",height="+h+"')");
	newwin.focus();
}else{
	var border=40;
	var width=eval(w+40);
	var height=eval(h+40);
	newwin = eval("window.open(url, 'newwin', 'scrollbars=no,resizable=no,screenX=0,screenY=0,width="+width+",height="+height+"')");
	newwin.focus();
}
}