/* index.cfm */
function calcHeight(id){
	var the_height=document.getElementById(id).contentWindow.document.body.scrollHeight;
	document.getElementById(id).height=the_height;
}
function registerFIF(){
	window.location = 'register.cfm?register=true';			
}
function loginFIF(){
	document.loginForm_header.action = 'register.cfm?login=true'
	document.loginForm_header.submit();
}
