function view(url, width, height) {
    var oWin = window.open(url, "", "width=" + width + ",height=" + height + ",status=no,menubar=no,location=no,resizable=yes,scrollbars=no");
    /*oWin.document.write("<html><body style=\"margin:0;padding:0;\"><div style=\"text-align:center;\"><img src=\"" + image + "\" width=\"" + width + "\" height=\"" + height + "\" /></div></body></html>");*/
    return true;
}
function view_scroll(url, width, height) {
    var oWin = window.open(url, "", "width=" + width + ",height=" + height + ",status=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
    /*oWin.document.write("<html><body style=\"margin:0;padding:0;\"><div style=\"text-align:center;\"><img src=\"" + image + "\" width=\"" + width + "\" height=\"" + height + "\" /></div></body></html>");*/
    return true;
}


function check() {
    var name  = document.getElementById("name");
    var phone  = document.getElementById("phone");
    var email  = document.getElementById("email");
    var regEmail = /^[\w.-]+@([a-z0-9\-]+\.)+[a-z]{2,6}$/i;
	var flag = 1;

	if( (name.value.replace(" ", "") == 0) && (phone.value.replace(" ", "") == 0) && (email.value.replace(" ", "") == 0)  ) {
		name.focus();
		alert('Please fill all fields.');
		flag = 0;
	}
	
    if ((name.value.replace(" ", "") == 0) && (phone.value.replace(" ", "") != 0)) {
        name.focus();
        alert("Please fill in your contact name.");
        flag = 0;
    }
    if ((phone.value.replace(" ", "") == 0) && (name.value.replace(" ", "") != 0)) {
        name.focus();
        alert("Please fill in your contact phone.");
        flag = 0;
    }
	if(email.value.replace(" ", "") != 0){
		if (!regEmail.test(email.value)) {
			email.focus();
			alert("Please enter correct email!");
	        flag = 0;
		}
	}
	if(flag==1) {
	    document.getElementById("contct").submit();
	}
}  