
function sameHeight(el1, el2, el3)
{
	obj1=document.getElementById(el1);
	obj2=document.getElementById(el2);
	H=Math.max(obj1.offsetHeight,obj2.offsetHeight);
	if(el3 != null){
		obj3=document.getElementById(el3);
		H=Math.max(H,obj3.offsetHeight);
		obj3.style.height=H+'px';	
	}
	obj1.style.height=H+'px';
	obj2.style.height=H+'px';
}

function popup1(url){
	window.open( url, "myWindow", "status = 0, height = 600, width = 450, resizable = 0, scrollbars=yes" )	
}
function popup2(url){
	window.open( url, "myWindow", "status = 0, height = 500, width = 490, resizable = 0, scrollbars=yes" );
}

function hidecallbtn(){
	document.getElementById('phonebtn').style.visibility = "hidden";
}
