// JavaScript Document

function checksupplier() {
        if ( document.applysupplier.uid.value =="" ) {
                alert("\Please input your account!")
                document.applysupplier.uid.focus();
        }
		else if (document.applysupplier.coid.value =="" ) {
                alert("\Please input your company name!")
                document.applysupplier.coid.focus();
        }
		else if (document.applysupplier.ulid.value =="" ) {
                alert("\Please input your product url!")
                document.applysupplier.ulid.focus();
        }
		else if (document.applysupplier.securityCode.value =="" ) {
                alert("\Please input security code!")
                document.applysupplier.securityCode.focus();
        }
        else {
                return true;
        }
        return false;
}

function commentform() {
        if ( document.commentproduct.name.value =="" ) {
                alert("\Please input your name!")
                document.commentproduct.name.focus();
        }
		else if (document.commentproduct.email.value =="" ) {
                alert("\Please input your email!")
                document.commentproduct.email.focus();
        }
		else if (document.commentproduct.comments.value =="" ) {
                alert("\Please input coment content!")
                document.commentproduct.comments.focus();
        }
		else if (document.commentproduct.securityCode.value =="" ) {
                alert("\Please input security code!")
                document.commentproduct.securityCode.focus();
        }
        else {
                return true;
        }
        return false;
}