var total = 637;var themonth = "January, 2005";var single = Math.floor(total/2);var singleplus = Math.floor(single*1.5);var five = Math.floor(single*3);var sl=Math.floor(total/2);var lp=Math.floor(sl*1.5);var l5=Math.floor(sl*3);var l10=Math.floor(sl*5);function getprices()			{p="<p>MiniFonts total catalog value on "+ themonth +": $"+total +"</p>"+"<p><span class='silver'><span class='bold'>MiniFonts Collection Licenses </p></span></span>&nbsp; &nbsp; &nbsp; Single: $"+single+"<br>&nbsp; &nbsp; &nbsp; Single Plus (Mac + PC): $"+singleplus+"<br> &nbsp; &nbsp; &nbsp; 5 Users: $"+ five+".";			return p;			}function showit(f,i)              {             var price=new Array();             var desc=new Array();                           price[0]=0;              desc[0]="";                            price[1]=sl;              desc[1]="MiniFonts Collection (Mac) Single License";                            price[2]=sl;              desc[2]="MiniFonts Collection (PC) Single License";                            price[3]=lp;              desc[3]="MiniFonts Collection Single License Plus";                            price[4]=l5;              desc[4]="MiniFonts Collection 5 Site License";                            price[5]=l10;              desc[5]="MiniFonts Collection 10 Site License";                            //alert(price[i]+"--"+ desc[i]);              document.products["Prod-1"].value=price[i];             document.products["Note: Details"].value=desc[i];             }                           function drawMenu()             {             menuString="<select name='mfc' onChange='showit(this.form,mfc.selectedIndex)'><option value='0'>---- Select license quantity required ----<\/option><option value='"+sl+"'>\[$"+sl+"\] Single user license - Mac<\/option><option value='"+sl+"'>\[$"+sl+"\] Single user license - PC<\/option><option value='"+lp+"'>\[$"+lp+"\] Single user license + Mac plus PC<\/option><option value='"+l5+"'>\[$"+l5+"\] Site license for 5 users<\/option><option value='"+l10+"'>\[$"+l10+"\] Site license for 10 users<\/option><\/select>";			return menuString;			}								function drawMonth()			{			return themonth;			}