// JavaScript Document
//VAR
var conboxview = false;
//FUNCTION
/*
function initPassbox()
{
	document.getElementById("passbox").innerHTML = "";
};
*/

function convert2Password(obj)
{
	obj = obj.parentNode;
	obj.innerHTML = "<input type='password' id='pass' name='pass' value=''>";
	window.setTimeout( "document.getElementById('pass').focus()" , 10 );
}

/*
function scale(){
	if (isNaN(document.getElementById("home_content"))){
		if (navigator.appName == 'Netscape'){
			var info_content = document.getElementById("info_content").offsetHeight;
			var home_content = document.getElementById("home_content").offsetHeight;

		}else{
			var info_content = document.getElementById("info_content").clientHeight;
			var home_content = document.getElementById("home_content").clientHeight;
		}
		
		if (home_content < info_content+93){
			info_content = info_content+93 ;
			document.getElementById("home_content").style.height = info_content+'px';
		}
	}
}
*/
function changeview(){
	if(conboxview==false){
		conboxview = true;
		document.getElementById("contactbox2").className  = 'contactbox3';
	}else{
		conboxview = false;
		document.getElementById("contactbox2").className  = 'contactbox2';
	}
}
