// JavaScript Document
function askExpert(){
		newWindow=window.open('ask_expert.php','','width=360,height=570,location=no,status=no,toolbars=no,resize=yes,scrollbars=yes');
}
function askQuestion(){
		newWindow=window.open('ask_expert.php','','width=360,height=570,location=no,status=no,toolbars=no,resize=yes,scrollbars=yes');
}
function showEditForm(browser){
	if (browser=="ie"){
			if (loginLayer.style.display=='block'){
				loginLayer.style.display='none';
			} else {
				loginLayer.style.display='block';
				document.actualForm.username.focus();
			}
	} else {
			if (document.getElementById('loginLayer').style.display=='block'){
				document.getElementById('loginLayer').style.display='none';
			} else {
				document.getElementById('loginLayer').style.display='block';
				document.actualForm.username.focus();
			}
	}
}
