<!-- 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=0.62

<!-- Australian $ buys Euro
EUEx=0.73

<!-- Australian $ buys USA $
USAEx=1.02

<!-- Australian $ buys Can $
CanEx=1.02



title1="DVD Volume No 1"
description1="Beginners"
sku1="DVD V1"
cost1=26.5

title2="DVD Volume No 2"
description2="Beginners"
sku2="DVD V2"
cost2=26.5

title3="DVD Volume No 3"
description3="Beginners"
sku3="DVD V3"
cost3=26.5

title4="DVD Volume No 4"
description4="Beginners"
sku4="DVD V4"
cost4=26.5

title5="DVD Volume No 1 - Childrens Edition"
description5="Children"
sku5="DVD V1C"
cost5=26.5

title6="DVD Volume No 6 - Unavailable"
description6="Out of Stock"
sku6="Out of Stock"
cost6=0


title7="DVD Volume No 7 - Unavailable"
description7="Out of Stock"
sku7="Out of Stock"
cost7=0


title8="Veiled Cleopatra"
description8="For Beginners"
sku8="DVD V8"
cost8=26.5

title9="Feel the Passion - Unavailable"
description9="Out of Stock"
sku9="Out of Stock"
cost9=0


title10="Renee's Veil Dancing - Unavailable"
description10="Out of Stock"
sku10="Out of Stock"
cost10=0


title11="Amera's Drum Solos"
description11="Intermediates/Advance"
sku11="Amera DVD"
cost11=26.5


title12="DVD Volumes 1 & 2"
description12="For Beginners"
sku12="DVDs 1 & 2"
cost12=52


title13="Any Two DVDs"
description13="Mixed Levels"
sku13="DVDs Any 2"
cost13=52


title14="DVD Volumes 1, 2, 3 ,4 + Free Car Sticker"
description14="For Beginners"
sku14="DVDs 1,2,3,4 & Sticker"
cost14=76

title15="Any Four + Free Car Sticker"
description15="For Beginners"
sku15="DVDs any Four & Sticker"
cost15=76


title16="Coin Belt"
description16="Mixed sizes"
sku16="Coin Belt"
cost16=30


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 - Unavailable"
description22="Out of Stock"
sku22="Out of Stock"
cost22=0


title23="Party Dances - Currently Unavailable "
description23="Out of Stock"
sku23="Out of Stock"
cost23=0


title24="Any Eight Volumes + Free Car Sticker - Unavailable"
description24="Out of Stock"
sku24="Out of Stock"
cost24=0


title25="DVD Volumes 1, 2, 3, 4, 5, 6, 7, 8, 9, Feel the passion, Ameras Drum Solos & Party Dances + Free Car Sticker - Unavailable"
description25="Out of Stock"
sku25="Out of Stock"
cost25=0


title26="Any Six Volumes + Free Car Sticker"
description26="Mixed levels"
sku26="DVDs Any 6 + Sticker"
cost26=129


title27="DVD Volumes 7, 8, 9, Feel the passion, Ameras Drum Solos & Party Dances + Free Car Sticker - Unavailable"
description27="Out of Stock"
sku27="Out of Stock"
cost27=0


title28="For Mature Dancers - Unavailable"
description28="Out of Stock"
sku28="Out of Stock"
cost28=0


title29="Bellydancing for the Kids and Mum<br>also good for PostNatal Mums - Unavailable"
description29="Out of Stock"
sku29="Out of Stock"
cost29=0

title30="Send by registered/Express post"
description30="Order will be sent by express post"
sku30="Registered Post"
cost30=8


<!-- 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,0,UKEx);
EUcost6=Convert(cost6,0,EUEx);
USAcost6=Convert(cost6,0,USAEx);
Cancost6=Convert(cost6,0,CanEx);
cost6=Convert(cost6,0,AUEx);

UKcost7=Convert(cost7,0,UKEx);
EUcost7=Convert(cost7,0,EUEx);
USAcost7=Convert(cost7,0,USAEx);
Cancost7=Convert(cost7,0,CanEx);
cost7=Convert(cost7,0,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,0,UKEx);
EUcost9=Convert(cost9,0,EUEx);
USAcost9=Convert(cost9,0,USAEx);
Cancost9=Convert(cost9,0,CanEx);
cost9=Convert(cost9,0,AUEx);

UKcost10=Convert(cost10,0,UKEx);
EUcost10=Convert(cost10,0,EUEx);
USAcost10=Convert(cost10,0,USAEx);
Cancost10=Convert(cost10,0,CanEx);
cost10=Convert(cost10,0,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,0,UKEx);
EUcost15=Convert(cost15,0,EUEx);
USAcost15=Convert(cost15,0,USAEx);
Cancost15=Convert(cost15,0,CanEx);
cost15=Convert(cost15,0,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,0,UKEx);
EUcost22=Convert(cost22,0,EUEx);
USAcost22=Convert(cost22,0,USAEx);
Cancost22=Convert(cost22,0,CanEx);
cost22=Convert(cost22,0,AUEx);

UKcost23=Convert(cost23,0,UKEx);
EUcost23=Convert(cost23,0,EUEx);
USAcost23=Convert(cost23,0,USAEx);
Cancost23=Convert(cost23,0,CanEx);
cost23=Convert(cost23,0,AUEx);

UKcost24=Convert(cost24,0,UKEx);
EUcost24=Convert(cost24,0,EUEx);
USAcost24=Convert(cost24,0,USAEx);
Cancost24=Convert(cost24,0,CanEx);
cost24=Convert(cost24,0,AUEx);

UKcost25=Convert(cost25,0,UKEx);
EUcost25=Convert(cost25,0,EUEx);
USAcost25=Convert(cost25,0,USAEx);
Cancost25=Convert(cost25,0,CanEx);
cost25=Convert(cost25,0,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,0,UKEx);
EUcost27=Convert(cost27,0,EUEx);
USAcost27=Convert(cost27,0,USAEx);
Cancost27=Convert(cost27,0,CanEx);
cost27=Convert(cost27,0,AUEx);

UKcost28=Convert(cost28,0,UKEx);
EUcost28=Convert(cost28,0,EUEx);
USAcost28=Convert(cost28,0,USAEx);
Cancost28=Convert(cost28,0,CanEx);
cost28=Convert(cost28,0,AUEx);

UKcost29=Convert(cost29,0,UKEx);
EUcost29=Convert(cost29,0,EUEx);
USAcost29=Convert(cost29,0,USAEx);
Cancost29=Convert(cost29,0,CanEx);
cost29=Convert(cost29,0,AUEx);

UKCost30=Convert(cost30,0,1);
EUcost30=Convert(cost30,0,1);
USAcost30=Convert(cost30,0,1);
Cancost30=Convert(cost30,0,1);
cost30=Convert(cost30,0,1);


