<!--
<!-- orders.js includes all the code in audrie_reg, plus the code to handle order entry -->
<!--

function mailme(){
who="audriemom@audrie.com"
what="Yardsign did not arrive";
parent.location.href='mailto:'+who+'?subject='+what+'';

}

function mailsome1(){
<!-- who=prompt("Enter your friend's email address: "," "); -->
who=""
what="Audrie.com: great web site!";
parent.location.href='mailto:'+who+'?subject='+what+'';

}

function Map2(page) {
OpenWin=this.open(page,"ctrlwindow","left=20,top=-500,width=500,height=400,toolbar=no,location=no,scrollbars=yes,resize=yes");
}


function today2() {
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900;
document.write("<right>" + lmonth + " ");
document.write(date + ", " + year + "</right>");
}

function cutDollar (Val) {
	Dollar = Math.floor(Val)
	return (Dollar);
}
	
function cutDollar2 (Val) {
	Dollar = Math.floor(Val)
	if (Dollar < 0) {Dollar = 0}
	return (Dollar);	

}

function roundDollar (Val) {
	Dollar = Math.floor(Val) 
	Val = "" + Math.round(Val * 100)
	Decimal = Val.substring (Val.length-2, Val.length)
	return (Dollar + "." + Decimal);
}


//-->

