function schools(){
  
}

schools.checkSchool = function(id)
{ 
    var prevId=$("#prevIdSchool").val();
    var divPrev="#info_"+prevId;	
  	var divNew="#info_"+id;
  	if (id==prevId)
  	{
  	    $(divPrev).toggle(500);
  	}
	else{
	    $(divNew).toggle(500);
	    $(divPrev).toggle(500);
	}
	
	$("#prevIdSchool").val(id);	
}


schools.open_window=function (title, width, height, content)
{
    ScrWindow=window.open("","","toolbar=no,location=no,left=100,top=300,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width="+width+",height="+height+"");
    if (ScrWindow != null && ScrWindow.opener == null) ScrWindow.opener=window;
    ScrWindow.document.open();
    ScrWindow.document.writeln ("<html><head><title>"+title+"</title></head><body>"+content+"</body></html>");
    ScrWindow.document.close();
} 

schools.infoSchool = function(id)
{ 
    var span="#info_"+id;
    var left="#schoolLeft_"+id;
    var text=$(span).html();
    $(left).tooltip({
    bodyHandler: "text" 
      });


}