function CreateFlash(divId, width, height, url)
{
	var d = document.getElementById(divId);
	d.innerHTML = '<embed pluginspage=http://www.macromedia.com/go/getflashplayer align=baseline src='+url+' width='+width+' height='+height+' type=application/x-shockwave-flash quality="high"></embed>';
}
function FormatCost(cost, currencySymbol, decimalPlaces)
{
    var iDecimalPlaces = parseInt(decimalPlaces);
    var multiplier = Math.pow(10, iDecimalPlaces);
    var fCost = parseFloat(cost);
    fCost = Math.round(fCost*multiplier) / (multiplier*1.0);
    var sCost = currencySymbol+fCost;
    var extraZeros = sCost.indexOf('.') - (sCost.length-iDecimalPlaces-1);
    for (var i=0; i<extraZeros; i++)
        sCost += '0';
    return sCost;
}