// JavaScript Document
function validateAll() {
	var ret = false;
	if (!validateColor(document.createForm.heart_color.value, 'heart color')) {
		return ret;
	}
	var message = validateEnglishAlphabets(document.createForm.message.value);
	document.createForm.message.value = message;
	
	return true;
}
function getFlashVars() {
	var flashVars = 'heart_color=' + document.createForm.heart_color.value + '&';
	flashVars += 'message=' + escape(document.createForm.message.value) + '&';
	return flashVars;
}
	
function getHtmlFromFlashVars(myFlashVars, mode) {
	var html = '<br /><div style="white-space: nowrap; line-height:0px; vertical-align: baseline"><a href="http://www.stunme.com" target="_blank">' +
		  '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' +	
          'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" ' +
		  'width="150" height="170">' +
		  '<param name="movie" value="http://www.stunme.com/flash/heart.swf" />' +
		  '<param name="quality" value="high" />' +
		  '<param name="menu" value="false" />' +
		  '<param name="wmode" value="transparent" />' +
		  '<param name="FlashVars" value="' + myFlashVars + '">' +
		  '<embed src="http://www.stunme.com/flash/heart.swf" quality="high" menu="false"  wmode="transparent" ' +    
		  'pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" ' +
		  'type="application/x-shockwave-flash" width="150" height="170" ' +
		  'FlashVars="' + myFlashVars + '"></embed></object></a><br />';
	if (mode == 'myspace') {
		html +='<a href="http://www.myspace.com/send_hearts" target="_top"><img src="http://www.stunme.com/images/heart/send_hearts.gif" alt="Stun Me" width="150" height="30" border="0" /></a><br /><a href="http://www.stunme.com" target="_blank"><img src="http://www.stunme.com/images/heart/by_stunme.gif" width="150" height="16" border="0"/></a>';
	}
	else if (mode == 'sample') {
		html +='';
	}
	else {
		   html +='<a href="http://www.stunme.com" target="_blank"><img src="http://www.stunme.com/images/stunme_bar_heart.gif" alt="Stun Me" width="150" height="18" border="0" /></a><br />';
	}
	html += '</div>';
	return html;
}
function getCode() {
	if (validateAll()) {
		var flashVars = getFlashVars();
		document.createForm.embed_code.value = getHtmlFromFlashVars(flashVars, 'stunme');
		document.getElementById('code').style.display = 'block';
	}
}
function preview() {
	if (validateAll()) {
		var flashVars = getFlashVars();
		var thisHtml = getHtmlFromFlashVars(flashVars, 'stunme');
		document.getElementById('preview').innerHTML = thisHtml;
		document.createForm.embed_code.value = thisHtml;
	}
}