// JavaScript Document
function checkForm(){
	if(document.form.username.value=='' || document.form.username.value=='Email'){
		alert("請輸入Email!");
		return false;
	}
	if(document.form.password.value==''){
		alert("請輸入password!");
		return false;
	}
	return true;
}

function openwin(url){
window.open(url,'NewWindow','height=500,width=780,menubar=no,toolbar=no');
}