function formcheck() {
		if( document.form1.hyperlink.value == "" ) {
		window.alert( 'You need to fill in your hyperlink.' );
		return false;}
		if( !document.form1.email.value || document.form1.email.value.replace( /[\w\-]+(\.[\w\-]+)*@[\w\-]+(\.[\w\-]+)+/i, "" ) ) {
		window.alert( 'You need to fill in your email adress.' );
		return false;}
	 else window.setTimeout('document.form1.submit();',100);}