function sendContest(){
var Comments = "Email: " + $('[name=AuthorEmail]').val()+ "\n\n";
Comments += "TELL US ABOUT YOUR BLOG: " + $('[name=AboutYourself]').val()+ "\n\n";
Comments += "HOW DO YOU GET PEOPLE TO READ YOUR BLOG? " + "\n";
Comments += "Facebook: " + $('[name=Facebook]').val()+ "\n";
Comments += "Twitter: " + $('[name=Twitter]').val()+ "\n";
Comments += "MySpace: " + $('[name=MySpace]').val()+ "\n";
Comments += "Other: " + $('[name=Other]').val()+ "\n\n";
Comments += "AGE: " + $('[name=Age]').val()+ "\n\n";
Comments += "FAVE STYLE BLOGGERS: " + $('[name=FaveBloggers]').val()+ "\n\n";
Comments += "DESCRIBE YOUR PERSONAL STYLE " + "\n";
Comments += "Proud Fashion Victim: " + $('[name=ProudFashion]').val()+ "\n";
Comments += "Modern Classic: " + $('[name=ModernClassic]').val()+ "\n";
Comments += "Modern Vintage: " + $('[name=ModernVintage]').val()+ "\n";
Comments += "Ahead of My Time: " + $('[name=AheadofTime]').val()+ "\n";
Comments += "All of Above: " + $('[name=AllofAbove]').val()+ "\n\n";
Comments += "IF YOUR CLOTHING COULD TALK: " + $('[name=ClothingTalk]').val()+ "\n\n";
Comments += "STYLE RULE: " + $('[name=StyleRule]').val()+ "\n\n";
Comments += "PHOTO LINK: " + $('[name=PhotoLink]').val()+ "\n\n";
Comments += "PHONE: " + $('[name=PhoneNumber]').val()+ "\n\n";
Comments += "ADDRESS: " + $('[name=Address]').val()+ "\n\n";
Comments += "Wants StyleList news: " + $('[name=StyleListNews]').val()+ "\n";
Comments += "Wants Bluefly news: " + $('[name=Bluefly]').val()+ "\n";
$('[name=Comments]').val(Comments);
}


/***********************************************
* Required field(s) validation v1.10- By NavSurf
* Visit Nav Surf at http://navsurf.com
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

function formCheck(formobj){
	// Enter name of mandatory fields
	var fieldRequired = Array("AuthorName", "AboutYourself", "Age", "FaveBloggers", "ClothingTalk", "StyleRule", "PhotoLink", "AuthorEmail", "PhoneNumber", "Address");
	// Enter field description to appear in the dialog box
	var fieldDescription = Array("Your Name", "About Your Blog", "Your Age", "Favorite Bloggers", "If Your Clothing Could Talk", "Your Number 1 Style Rule", "A Photo Link", "Your Email Address", "Your Phone Number", "Your Address" );
	// dialog message
	var alertMsg = "Looks like you might have forgotten a few questions, and all fields are required to enter. Please take a second to fill out the following:\n\n";
	
	var l_Msg = alertMsg.length;
	
	for (var i = 0; i < fieldRequired.length; i++){
		var obj = formobj.elements[fieldRequired[i]];
		if (obj){
			switch(obj.type){
			case "select-one":
				if (obj.selectedIndex == -1 || obj.options[obj.selectedIndex].text == ""){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			case "select-multiple":
				if (obj.selectedIndex == -1){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			case "text":
			case "textarea":
				if (obj.value == "" || obj.value == null){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
				break;
			default:
			}
			if (obj.type == undefined){
				var blnchecked = false;
				for (var j = 0; j < obj.length; j++){
					if (obj[j].checked){
						blnchecked = true;
					}
				}
				if (!blnchecked){
					alertMsg += " - " + fieldDescription[i] + "\n";
				}
			}
		}
	}

	if (alertMsg.length == l_Msg){
		return true;
	}else{
		alert(alertMsg);
		return false;
	}
}