function openhelp(s, t, l){
	var popurl="help/h0"+l+"/"+s+"-"+t+".html";
	var nwl = (screen.width/2)-(900/2);
	var nwh = (screen.height/2)-(650/2);	
	winpops=window.open(popurl,"","width=500,height=300,status,scrollbars,left="+nwl+",top="+nwh+"");
}

function openpopup(url, w, h){
	var popurl=url;
	var nwl = (screen.width/2)-(w/2);
	var nwh = (screen.height/2)-(h/2);	
	winpops=window.open(popurl,"","width="+w+",height="+h+",left="+nwl+",top="+nwh+"");
}

function openfilemanager(url, w, h){
	var popurl=url;
	var nwl = (screen.width/2)-(w/2);
	var nwh = (screen.height/2)-(h/2);	
	winpops=window.open(popurl,"","width="+w+",height="+h+",left="+nwl+",top="+nwh+",resizable=yes,scrollbars=yes");
}

