////////////////////////////////////////////////////////////////////////////////
///// Logo_Store version 0.1
///// Programmed by: 
///// raajendr@gmail.com
///// Special note: 
////////////////////////////////////////////////////////////////////////////////

function Customisation_UpdateFont (Text) {

	var Element = GetRefToElement ("FontDisplay");

	if (("" + Text) == "Select a font") {
		Element.innerHTML = "No font selected";
		Element.style.font = "24px Times New Roman";
	} ///// End if ()
	else {
		var FontName = "24px " + Text;
		Element.innerHTML = "Aa Bb Cc Dd Ee Ff Gg Hh Ii Jj Kk Ll Mm Nn Oo Pp Qq Rr Ss Tt Uu Vv Ww Xx Yy Zz";
		Element.style.font = FontName;
	} ///// End else

	Customisation_UpdateEmphasis ();

} ///// End Customisation_UpdateFont ()





function Customisation_UpdateEmphasis () {

	var Element = GetRefToElement ("FontDisplay");
	var OrigText = Element.innerHTML;
	var NewText = "";

	for (var i = 0; i < OrigText.length; i++) {

		if (OrigText.substring (i, i + 1) != "<") {
			NewText += OrigText.substring (i, i + 1);
			if (OrigText.substring (i + 2, i + 3) == "/") {
				break;
			} ///// End if ()
		} ///// End if ()

		else {
			i += 2;
		} ///// End else

	} ///// End for ()

	if (document.CustomisationOptionsForm.BoldCheckBox.checked) {
		NewText = "<b>" + NewText + "</b>";
	} ///// End if ()

	if (document.CustomisationOptionsForm.ItalicsCheckBox.checked) {
		NewText = "<i>" + NewText + "</i>";
	} ///// End if ()

	Element.innerHTML = NewText;

} ///// End Customisation_UpdateEmphasis ()


