function checkme ( subscribeForm ) {	var string1=subscribeForm.Email.value ;	if (subscribeForm.Email.value == null || subscribeForm.Email.value == "" || string1.indexOf("@") == -1) {		   alert ("Please enter a valid email address!") ;		   subscribeForm.Email.focus() ;		   subscribeForm.Email.select() ;		   return false ;	} // end Email if				if (subscribeForm.password.value == null || subscribeForm.password.value == "" || subscribeForm.confirm_password.value == null || subscribeForm.confirm_password.value== "" || subscribeForm.password.value != subscribeForm.confirm_password.value) {		alert ("Either your passwords do not match or you have left them blank!") ;		subscribeForm.password.focus() ;		subscribeForm.password.select() ;		return false ;	} // end password verification} //end checkme function	function checkme2 ( contactForm ) {	var string1=contactForm.Email.value ;	if (contactForm.Email.value == null || contactForm.Email.value == "" || string1.indexOf("@") == -1) {		   alert ("Please enter a valid email address!") ;		   contactForm.Email.focus() ;		   contactForm.Email.select() ;		   return false ;	} // end Email if				if (contactForm.fullName.value == null || contactForm.fullName.value == "") {		alert ("You left your name blank.") ;		contactForm.fullName.focus() ;		contactForm.fullName.select() ;		return false ;	} // end name verification	if (contactForm.comments.value == null || contactForm.comments.value == "") {		alert ("You left your comments blank.") ;		contactForm.comments.focus() ;		contactForm.comments.select() ;		return false ;	} // end comments verification} //end checkme2 functionfunction checkme3 ( concernForm ) {	var string1=concernForm.Email.value ;	if (concernForm.Email.value == null || concernForm.Email.value == "" || string1.indexOf("@") == -1) {		   alert ("Please enter a valid email address!") ;		   concernForm.Email.focus() ;		   concernForm.Email.select() ;		   return false ;	} // end Email if				if (concernForm.fullName.value == null || concernForm.fullName.value == "") {		alert ("You left your name blank.") ;		concernForm.fullName.focus() ;		concernForm.fullName.select() ;		return false ;	} // end name verification	if (concernForm.equity.value == null || concernForm.equity.value == "") {		alert ("You left your equity number blank.") ;		concernForm.equity.focus() ;		concernForm.equity.select() ;		return false ;	} // end equity verification	if (concernForm.concern.value == null || concernForm.concern.value == "") {		alert ("You left your concern blank.") ;		concernForm.concern.focus() ;		concernForm.concern.select() ;		return false ;	} // end concern verification} //end checkme3 function	function openwindow(url,name,attr) {	window.open(url,name,attr)} //end open window functionfunction wizard(wiz_type, form_name) {  var content = document.forms[form_name].text  var new_content;    if (wiz_type == "image") {    var tmp_image = prompt('Please enter the URL where your image is located:', 'http://');    if (tmp_image) {      var pseudo_html = '<img src=' + tmp_image + '</img>';      new_content = content.value + pseudo_html;      content.value = new_content;    }    content.focus();    return false;  }  if (wiz_type == 'link') {    var tmp_href = prompt('Please enter the URL for your page:', 'http://');    var tmp_title = prompt('Please enter the title for the link You just provided:', tmp_href)    if (tmp_href && tmp_title) {      pseudo_html = '<a href=' + tmp_href + ' target=_blank>' + tmp_title+'</a>';      new_content = content.value + pseudo_html;      content.value = new_content;    }    content.focus();    return false;  }  if (wiz_type == "italic") {    var tmp_word = prompt('Please enter a word or sentence:', '');    if (tmp_word) {      var pseudo_html = '<i>' + tmp_word + '</i>';      new_content = content.value + pseudo_html;      content.value = new_content;    }    content.focus();    return false;  }  if (wiz_type == "bold") {    var tmp_word = prompt('Please enter a word or sentence:', '');    if (tmp_word) {      var pseudo_html = '<strong>' + tmp_word + '</strong>';      new_content = content.value + pseudo_html;      content.value = new_content;    }    content.focus();    return false;  }  if (wiz_type == "big") {    var tmp_word = prompt('Please enter a word or sentence:', '');    if (tmp_word) {      var pseudo_html = '<span style=font-size:large;>' + tmp_word + '</span>';      new_content = content.value + pseudo_html;      content.value = new_content;    }    content.focus();    return false;  }  if (wiz_type == "code") {    var tmp_word = prompt('Please enter a word or sentence:', '');    if (tmp_word) {      var pseudo_html = '<code>' + tmp_word + '</code>';      new_content = content.value + pseudo_html;      content.value = new_content;    }    content.focus();    return false;  }}