function openServ(){
	photo = window.open('services.htm', 'serv', 'width=425px,height=540px,screenX=10,screenY=10,top=10,left=10');
	photo.location.href = place;
}

var last='picCS';

function Hide(object) {
if (document.layers){
        document.layers[last].visibility = 'hidden';
	last=object;
	}
     else if (document.all){
         document.all[last].style.visibility = 'hidden';
	last=object;
	}
	else if (document.getElementById){
	document.getElementById([last]).style.visibility = "hidden";
	last=object;
	}
 }




function show(object) {
if (document.layers){
        document.layers[last].visibility = 'hidden';
        document.layers[object].visibility = 'visible';
	last=object;
	}
     else if (document.all){
//for IE
         document.all[last].style.visibility = 'hidden';
         document.all[object].style.visibility = 'visible';
	last=object;
	}
	else if (document.getElementById){
	document.getElementById([last]).style.visibility = "hidden"
 	document.getElementById([object]).style.visibility = "visible"
	last=object;
	}
 }

function openPage(place){
	photo = window.open('', "photopage", "width=375px,height=200px,screenX=500,screenY=450,left=500,top=450,resizable=yes,scrollbars=yes");
	photo.location.href = place;
}

