var ImgPopUp=null; var last='Family_Home';
function ident(Obj){ return (document.all)?document.all[Obj]:document.getElementById(Obj); } 
function sendData(data, page, method){ 
	//var XhrObj = (document.all)?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();
	if (typeof XMLHttpRequest!='undefined')	XhrObj=new XMLHttpRequest();	else if (typeof ActiveXObject!='undefined') 	XhrObj=new ActiveXObject('MSXML2.XmlHttp');	else XhrObj=false;	
	var generateList=ident('page');
	if (method=="GET") (data=='null')?XhrObj.open("GET", page):XhrObj.open("GET", page+"?"+data);
	else if (method=="POST")	XhrObj.open("POST", page);
	XhrObj.onreadystatechange=function() {	if (XhrObj.readyState==4 && XhrObj.status==200) generateList.innerHTML=XhrObj.responseText;	}
	if (method=="GET") XhrObj.send(null); else if (method=="POST") {	XhrObj.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); XhrObj.send(data);	}
}
function getFile(page){ sendData('null', page, 'GET'); }
function refresh(arg1, arg2){ last='Family_Home'; sendData(arg1, 'pages/'+arg2, 'POST'); }
function display_wwa(choice){
 ident('compagny_profile').style.display='none'; ident('management_team').style.display='none';
 ident('compagny_profile_title').style.color='white'; ident('compagny_profile_title').style.background='#424954'; ident('compagny_profile_title').style.border='1px solid white';
 ident('management_team_title').style.color='white'; ident('management_team_title').style.background='#424954'; ident('management_team_title').style.border='1px solid white';
 ident(choice).style.display=''; ident(choice+'_title').style.color='rgb(128,128,192)'; ident(choice+'_title').style.background='white'; ident(choice+'_title').style.border='1px solid rgb(0,0,128)';
}
function display_person(object){ ident('person_BERREBI').style.display='none'; ident('person_SIMPSON_JONES').style.display='none'; ident('person_MIDTTUN').style.display='none'; ident('person_CANEI').style.display='none'; ident('person_'+object.value).style.display=''; } 
function display_links(object,description){ last=object; ident('SlideLink').innerHTML='&#149; '+description+' &#149;'; ident('SlideMenu').style.display='none'; ident('links_Family_Home').style.display='none'; ident('links_Gifts').style.display='none'; ident('links_Photography').style.display='none'; ident('links_Scrapbooking_Crafts').style.display='none'; ident('links_Sports').style.display='none'; ident('links_Special_Occasions').style.display='none'; ident('links_'+object).style.display=''; }
function openImg(folder,picture,description,width,height) {
 closeImg(); width=parseInt(width)+20; height=parseInt(height)+30;
 popup=window.open('','PopUp','toolbar=no,location=no,directories=no,status=0,scrollbars=no,resizable=no,copyhistory=no,width='+width+'px,height='+height+'px');
 ImgPopUp=popup;
 if (ImgPopUp!=null) {
  doc=popup.document;
  doc.write('<html><head><title>'+description+'</title></head><body style="background-color:#96afcd;"><center><img src="pictures/'+folder+'/popup/'+picture+'.jpg" /></center></body></html>');
  doc.close();
 }
}
function closeImg() { if (ImgPopUp!=null) { ImgPopUp.close(); ImgPopUp=null;} }
function displaylink() { if (ident('SlideMenu').style.display=='none') { ident('SlideMenu').style.display=''; } else { ident('SlideMenu').style.display='none'; } }
function show_links() { ident('links_Family_Home').style.display='none'; ident('menu_Family_Home').style.display=''; ident('links_Gifts').style.display='none'; ident('menu_Gifts').style.display=''; ident('links_Photography').style.display='none'; ident('menu_Photography').style.display=''; ident('links_Scrapbooking_Crafts').style.display='none'; ident('menu_Scrapbooking_Crafts').style.display=''; ident('links_Sports').style.display='none'; ident('menu_Sports').style.display=''; ident('links_Special_Occasions').style.display='none'; ident('menu_Special_Occasions').style.display=''; ident('menu_'+last).style.display='none'; displaylink(); }