<!-- Do not change

function format(num)
<!-- function format based on code from Tim Wallace.  (Thanx)
   {

   finished=Math.floor(num)+".";

   var base=100*(num-Math.floor(num))+0.5;

   finished += Math.floor(base/10);

   finished += Math.floor(base%10);

   return finished;

   }


function Convert(cost,post,rate)
<!-- function format based on code from Peter Hawkes.
	{
		converted=(cost+post)*rate;
		converted = Math.round(converted);
		converted= format(converted);
		return converted;

	}


<!-- OK to change

<!-- Australian postage
AUPost1=1.50
AUPost2=3.00
AUPost4=6.00
AUPost8=10.00
AUPost12=16.00

<!-- International postage
IntPost1=3.00
IntPost2=4.50
IntPost4=7.00
IntPost8=14.00
IntPost12=21.00

<!-- Australian $ buys Aust $
AUEx=1

<!-- Australian $ buys UK Pounds
UKEx=.55

<!-- Australian $ buys Euro
EUEx=.65

<!-- Australian $ buys USA $
USAEx=.82

<!-- Australian $ buys Can $
CanEx=.85



title1="DVD Volume No 1"
description1="Beginners"
sku1="DVD V1"
cost1=23.5

title2="DVD Volume No 2"
description2="Beginners"
sku2="DVD V2"
cost2=23.5

title3="DVD Volume No 3"
description3="Beginners"
sku3="DVD V3"
cost3=23.5

title4="DVD Volume No 4"
description4="Beginners"
sku4="DVD V4"
cost4=23.5

title5="DVD Volume No 5"
description5="Beginners"
sku5="DVD V5"
cost5=23.5

title6="DVD Volume No 6"
description6="Beginners"
sku6="DVD V6"
cost6=23.5


title7="DVD Volume No 7"
description7="Beginners"
sku7="DVD V7"
cost7=23.5


title8="Veiled Cleopatra -DVD Volume No 8"
description8="Beginners/Intermediates"
sku8="DVD V8"
cost8=23.5

title9="Feel the Passion"
description9="Beg/Inter/Advance"
sku9="FTP DVD"
cost9=23.5


title10="Renee's Veil Dancing"
description10="For Beginners"
sku10="Veil DVD"
cost10=23.5


title11="Amera's Drum Solos"
description11="Intermediates/Advance"
sku11="Amera DVD"
cost11=23.5


title12="DVD Volumes 1, 2 & 3"
description12="For Beginners"
sku12="DVDs 1 & 2 & 3"
cost12=62


title13="Any Three DVDs"
description13="Mixed Levels"
sku13="DVDs Any 3"
cost13=62


title14="DVD Volumes 1, 2, 3 ,4, 5 & 6 + Free Car Sticker"
description14="For Beginners"
sku14="DVDs 1,2,3,4,5,6 & Sticker"
cost14=120

title15="DVDs Volumes 1, 2, 3, 4, 5, 6, 7, & 8 + Free Car Sticker"
description15="For Beginners"
sku15="DVDs 1,2,3,4,5,6,7,8 & Sticker"
cost15=210


title16="Coin Belt"
description16="Mixed sizes"
sku16="Coin Belt"
cost16=34


title17="Sewing Patterns - Harem Pants"
description17="Adjust to fit all Sizes"
sku17="HP Pattern"
cost17=13.5


title18="Sewing Patterns - Round Skirt"
description18="Adjust to fit all sizes"
sku18="RSk Pattern"
cost18=13.5


title19="Sewing Patterns - Hip Belt"
description19="Adjust to fit all sizes"
sku19="HB Pattern: "
cost19=13.5

title20="Car Sticker"
description20="Car Sticker"
sku20="CarStr"
cost20=2.0


title21="Car Sticker x 2"
description21="Car Sticker"
sku21="CarStrx2"
cost21=3,5


title22="Wonderful Hips - DVD Volume No 9 "
description22="Intermediate"
sku22="DVD V9"
cost22=23.5


title23="Party Dances "
description23="Beginners/Intermediates"
sku23="DVD Party Dances"
cost23=23.5


title24="Any Eight Volumes + Free Car Sticker"
description24="Beg/Inter/Advance"
sku24="DVDs Any 8 + Sticker"
cost24=150


title25="DVD Volumes 1, 2, 3, 4, 5, 6, 7, 8, 9, Feel the passion, Ameras Drum Solos & Party Dances + Free Car Sticker"
description25="Ambitious Beginner"
sku25="DVDs 1,2,3,4,5,6,7,8,9,FTP,ADS,PD & Sticker"
cost25=230


title26="Any Six Volumes + Free Car Sticker"
description26="Mixed levels"
sku26="DVDs Any 6 + Sticker"
cost26=120


title27="DVD Volumes 7, 8, 9, Feel the passion, Ameras Drum Solos & Party Dances + Free Car Sticker"
description27="Mixed levels"
sku27="DVDs 7,8,9,FTP,ADS,PD & Sticker"
cost27=120


title28="DVD for Mature Dancers "
description28="Beginners/Intermediates"
sku28="DVD Mature Dancers"
cost28=23.5


title29="Bellydancing for the Kids and Mum<br>also good for PostNatal Mums"
description29="Beginners/Intermediates"
sku29="DVD Kids and Post Natal"
cost29=23.5

<!-- Do not change

UKcost1=Convert(cost1,IntPost1,UKEx);
EUcost1=Convert(cost1,IntPost1,EUEx);
USAcost1=Convert(cost1,IntPost1,USAEx);
Cancost1=Convert(cost1,IntPost1,CanEx);
cost1=Convert(cost1,AUPost1,AUEx);

UKcost2=Convert(cost2,IntPost1,UKEx);
EUcost2=Convert(cost2,IntPost1,EUEx);
USAcost2=Convert(cost2,IntPost1,USAEx);
Cancost2=Convert(cost2,IntPost1,CanEx);
cost2=Convert(cost2,AUPost1,AUEx);

UKcost3=Convert(cost3,IntPost1,UKEx);
EUcost3=Convert(cost3,IntPost1,EUEx);
USAcost3=Convert(cost3,IntPost1,USAEx);
Cancost3=Convert(cost3,IntPost1,CanEx);
cost3=Convert(cost3,AUPost1,AUEx);

UKcost4=Convert(cost4,IntPost1,UKEx);
EUcost4=Convert(cost4,IntPost1,EUEx);
USAcost4=Convert(cost4,IntPost1,USAEx);
Cancost4=Convert(cost4,IntPost1,CanEx);
cost4=Convert(cost4,AUPost1,AUEx);

UKcost5=Convert(cost5,IntPost1,UKEx);
EUcost5=Convert(cost5,IntPost1,EUEx);
USAcost5=Convert(cost5,IntPost1,USAEx);
Cancost5=Convert(cost5,IntPost1,CanEx);
cost5=Convert(cost5,AUPost1,AUEx);

UKcost6=Convert(cost6,IntPost1,UKEx);
EUcost6=Convert(cost6,IntPost1,EUEx);
USAcost6=Convert(cost6,IntPost1,USAEx);
Cancost6=Convert(cost6,IntPost1,CanEx);
cost6=Convert(cost6,AUPost1,AUEx);

UKcost7=Convert(cost7,IntPost1,UKEx);
EUcost7=Convert(cost7,IntPost1,EUEx);
USAcost7=Convert(cost7,IntPost1,USAEx);
Cancost7=Convert(cost7,IntPost1,CanEx);
cost7=Convert(cost7,AUPost1,AUEx);

UKcost8=Convert(cost8,IntPost1,UKEx);
EUcost8=Convert(cost8,IntPost1,EUEx);
USAcost8=Convert(cost8,IntPost1,USAEx);
Cancost8=Convert(cost8,IntPost1,CanEx);
cost8=Convert(cost8,AUPost1,AUEx);

UKcost9=Convert(cost9,IntPost1,UKEx);
EUcost9=Convert(cost9,IntPost1,EUEx);
USAcost9=Convert(cost9,IntPost1,USAEx);
Cancost9=Convert(cost9,IntPost1,CanEx);
cost9=Convert(cost9,AUPost1,AUEx);

UKcost10=Convert(cost10,IntPost1,UKEx);
EUcost10=Convert(cost10,IntPost1,EUEx);
USAcost10=Convert(cost10,IntPost1,USAEx);
Cancost10=Convert(cost10,IntPost1,CanEx);
cost10=Convert(cost10,AUPost1,AUEx);

UKcost11=Convert(cost11,IntPost1,UKEx);
EUcost11=Convert(cost11,IntPost1,EUEx);
USAcost11=Convert(cost11,IntPost1,USAEx);
Cancost11=Convert(cost11,IntPost1,CanEx);
cost11=Convert(cost11,AUPost1,AUEx);

UKcost12=Convert(cost12,IntPost2,UKEx);
EUcost12=Convert(cost12,IntPost2,EUEx);
USAcost12=Convert(cost12,IntPost2,USAEx);
Cancost12=Convert(cost12,IntPost2,CanEx);
cost12=Convert(cost12,AUPost2,AUEx);

UKcost13=Convert(cost13,IntPost2,UKEx);
EUcost13=Convert(cost13,IntPost2,EUEx);
USAcost13=Convert(cost13,IntPost2,USAEx);
Cancost13=Convert(cost13,IntPost2,CanEx);
cost13=Convert(cost13,AUPost2,AUEx);

UKcost14=Convert(cost14,IntPost4,UKEx);
EUcost14=Convert(cost14,IntPost4,EUEx);
USAcost14=Convert(cost14,IntPost4,USAEx);
Cancost14=Convert(cost14,IntPost4,CanEx);
cost14=Convert(cost14,AUPost4,AUEx);

UKcost15=Convert(cost15,IntPost8,UKEx);
EUcost15=Convert(cost15,IntPost8,EUEx);
USAcost15=Convert(cost15,IntPost8,USAEx);
Cancost15=Convert(cost15,IntPost8,CanEx);
cost15=Convert(cost15,AUPost8,AUEx);

UKcost16=Convert(cost16,IntPost4,UKEx);
EUcost16=Convert(cost16,IntPost4,EUEx);
USAcost16=Convert(cost16,IntPost4,USAEx);
Cancost16=Convert(cost16,IntPost4,CanEx);
cost16=Convert(cost16,AUPost4,AUEx);

UKcost17=Convert(cost17,IntPost1,UKEx);
EUcost17=Convert(cost17,IntPost1,EUEx);
USAcost17=Convert(cost17,IntPost1,USAEx);
Cancost17=Convert(cost17,IntPost1,CanEx);
cost17=Convert(cost17,AUPost1,AUEx);

UKcost18=Convert(cost18,IntPost1,UKEx);
EUcost18=Convert(cost18,IntPost1,EUEx);
USAcost18=Convert(cost18,IntPost1,USAEx);
Cancost18=Convert(cost18,IntPost1,CanEx);
cost18=Convert(cost18,AUPost1,AUEx);

UKcost19=Convert(cost19,IntPost1,UKEx);
EUcost19=Convert(cost19,IntPost1,EUEx);
USAcost19=Convert(cost19,IntPost1,USAEx);
Cancost19=Convert(cost19,IntPost1,CanEx);
cost19=Convert(cost19,AUPost1,AUEx);

UKcost20=Convert(cost20,AUPost1,UKEx);
EUcost20=Convert(cost20,AUPost1,EUEx);
USAcost20=Convert(cost20,AUPost1,USAEx);
Cancost20=Convert(cost20,AUPost1,CanEx);
cost20=Convert(cost20,AUPost1,AUEx);

UKcost21=Convert(cost21,AUPost1,UKEx);
EUcost21=Convert(cost21,AUPost1,EUEx);
USAcost21=Convert(cost21,AUPost1,USAEx);
Cancost21=Convert(cost21,AUPost1,CanEx);
cost21=Convert(cost21,AUPost1,AUEx);

UKcost22=Convert(cost22,IntPost1,UKEx);
EUcost22=Convert(cost22,IntPost1,EUEx);
USAcost22=Convert(cost22,IntPost1,USAEx);
Cancost22=Convert(cost22,IntPost1,CanEx);
cost22=Convert(cost22,AUPost1,AUEx);

UKcost23=Convert(cost23,IntPost1,UKEx);
EUcost23=Convert(cost23,IntPost1,EUEx);
USAcost23=Convert(cost23,IntPost1,USAEx);
Cancost23=Convert(cost23,IntPost1,CanEx);
cost23=Convert(cost23,AUPost1,AUEx);

UKcost24=Convert(cost24,IntPost8,UKEx);
EUcost24=Convert(cost24,IntPost8,EUEx);
USAcost24=Convert(cost24,IntPost8,USAEx);
Cancost24=Convert(cost24,IntPost8,CanEx);
cost24=Convert(cost24,AUPost8,AUEx);

UKcost25=Convert(cost25,IntPost12,UKEx);
EUcost25=Convert(cost25,IntPost12,EUEx);
USAcost25=Convert(cost25,IntPost12,USAEx);
Cancost25=Convert(cost25,IntPost12,CanEx);
cost25=Convert(cost25,AUPost12,AUEx);

UKcost26=Convert(cost26,IntPost4,UKEx);
EUcost26=Convert(cost26,IntPost4,EUEx);
USAcost26=Convert(cost26,IntPost4,USAEx);
Cancost26=Convert(cost26,IntPost4,CanEx);
cost26=Convert(cost26,AUPost4,AUEx); 

UKcost27=Convert(cost27,IntPost4,UKEx);
EUcost27=Convert(cost27,IntPost4,EUEx);
USAcost27=Convert(cost27,IntPost4,USAEx);
Cancost27=Convert(cost27,IntPost4,CanEx);
cost27=Convert(cost27,AUPost4,AUEx);

UKcost28=Convert(cost28,IntPost1,UKEx);
EUcost28=Convert(cost28,IntPost1,EUEx);
USAcost28=Convert(cost28,IntPost1,USAEx);
Cancost28=Convert(cost28,IntPost1,CanEx);
cost28=Convert(cost28,AUPost1,AUEx);

UKcost29=Convert(cost29,IntPost1,UKEx);
EUcost29=Convert(cost29,IntPost1,EUEx);
USAcost29=Convert(cost29,IntPost1,USAEx);
Cancost29=Convert(cost29,IntPost1,CanEx);
cost29=Convert(cost29,AUPost1,AUEx);
