// JavaScript Document
function checkLogin(fmb_id){
	//alert(fmb_id);
	if(fmb_id==""){
		if(confirm(altLogin)){
			window.location.href=('index.php');
		}else{
			return false;
		}
	   return false;
	}else{
	   return true;
	}
}
function checkLogin2(fmb_id,fid){
	//alert(fmb_id);
	if(fmb_id==""){
		if(confirm(altLogin)){
			window.location.href=('index.php');
		}else{
			return false;
		}
	   return false;
	}else{
		if(fid!=0){
			window.open('http://family.mediathai.net/familyTree.php?fid='+fid);	
		}else{
			window.open('http://family.mediathai.net/');
		}
		return false;
	}
}
