<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function progress_DoFSCommand(command, args) {
  //var progressObj = InternetExplorer ? progress : window.document.progress;
  //
  	if (command == "updateWidth"){
    	document.form1.width.value = args; 
	}
	if (command == "updateHeight"){
    	updateHeight(args); 
	}
  	if (command == "updatePrice"){
    	document.form1.price.value = args; 
		document.all.display_price.innerHTML='$'+args;
	}
	if (command == "updateShadowX"){
    	//alert(args);
		document.form1.shadow_x.value = args; 
	}
  	if (command == "updateShadowY"){
    	//alert(args);
		document.form1.shadow_y.value = args; 
	}
  //
}
// Hook for Internet Explorer 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	  navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('Sub progress_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call progress_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}
function updateHeight(theHeight) {
 	//alert(document.getElementById('signtext').value + document.getElementById('fontStyle').value + document.getElementById('fontColour').value);	
	document.form1.theheight.value = theHeight;
}
function updateText(theText) {
 	//alert(document.getElementById('signtext').value + document.getElementById('fontStyle').value + document.getElementById('fontColour').value);	
	window.document.progress.SetVariable("theText", theText);
}
function updateFontStyle(fontStyle) {
 	window.document.progress.SetVariable("fontStyle", fontStyle);
	document.form1.fontstyle.value = fontStyle;
}
function updateFontSize(fontSize) {
 	window.document.progress.SetVariable("fontSize", fontSize);
}
function updateFontColour(fontColour) {
 	window.document.progress.SetVariable("fontColour", fontColour);
	document.form1.font_colour.value = fontColour; 
}
function updateBgColour(bgColour) {
 	window.document.progress.SetVariable("bgColour", bgColour);
	document.form1.bg_colour.value = bgColour;
}
function updateShadow(theShadow) {
 	
	if(theShadow!='no'){
		document.getElementById('shadowcolours').style.display="block";
		window.document.progress.SetVariable("theShadow", "yes");
	} else {
		document.getElementById('shadowcolours').style.display="none";
		window.document.progress.SetVariable("theShadow", "no");
	}
}
function updateShadowColour(shadowColour) {
 	window.document.progress.SetVariable("shadowColour", shadowColour);
	document.form1.shadow_colour.value = shadowColour;
}
function updateEffect(effect) {
 	window.document.progress.SetVariable("slant", effect);
	//alert(effect);
	document.form1.slant.value = effect;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->