function popUpWindow(URLStr, left, top, width, height, scroll, resize, winID)
{
	var left = screen.width/2 - width/2;
	var top= screen.height/2 - height/2;
	var winVar = this[winID];
	if(winVar) {
		if(!winVar.closed) winVar.close();
	}
	winVar = open(URLStr, winID, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + (scroll ? "yes" : "no") + ',resizable=' + (resize ? "yes" : "no") + ',copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	
	return winVar;
}

function startSite() {
 var winVar = popUpWindow('hanuman_popup.html',0,0,1000,600,false,false,'site');
}