// JavaScript Document
if (parseInt(navigator.appVersion.charAt(0))>=4){ 
var isNN=(navigator.appName=='Netscape')?1:0; 
var isIE=(navigator.appName.indexOf('Microsoft')!=-1)?1:0; 
} 
if (isNN) {	
document.getElementById("css").href="Style/cssFF.css";
}

function move(obj){
		obj.style.position="relative";
		obj.style.top="1px";
		obj.style.left="1px";
}

function unmove(obj){
		obj.style.position="relative";
		obj.style.top="0px";
		obj.style.left="0px";
}

function ema(){
	var name = document.getElementById("name").value;
	var email = document.getElementById("email").value;
	if(name==""){
		alert("Please Enter Your Name.");
		document.getElementById("name").focus();
		return false;	
	}
	if(email==""){
		alert("Please Enter Email.");
		document.getElementById("email").focus();
		return false;	
	}
}

function input_y1()
	{
		var firstname = document.getElementById("firstname").value;
		var email = document.getElementById("email").value;
		var phone = document.getElementById("phone").value;
		if (firstname==""){
			alert("please enter you name!");
			document.getElementById("firstname").focus();
			return false;
		}
		if (email=="" && phone==""){
			alert("please enter E-mail or Phone!");
			document.getElementById("phone").focus();
			return false;
		}
	}
	