// JavaScript Document
function popupwindow(){
	var width = 608;
    var height = 500;
	url="_milestones_achieved.html"
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
	
	window.open(url,'subWind','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',left='+left+',top='+top);
}

function openForm(){
	window.open("_administrator.html",'_self');
}

function searchSelect(curId){
	//var divWithId = document.getElementById('div'+curId);	
	//alert(divWithId.visibility);
	document.getElementById('div1').style.visibility ='hidden';
	document.getElementById('div2').style.visibility ='hidden';
	document.getElementById('div3').style.visibility ='hidden';
	document.getElementById('div4').style.visibility ='hidden';
	document.getElementById('div5').style.visibility ='hidden';
	document.getElementById('div'+curId).style.visibility ='visible';
}

function openNew(curWindow){
	//alert(curWindow);
	window.open(curWindow,'_self');
}