// Menu items

function cartitems()

{
//color="#000099" BWY menu Blue
//color="#99cc99" BWY menu highlight

items=
'<table border="0"  cellspacing="0" cellpadding="0" bordercolor="#FFFFFF" width="1000px">'+
'<tr bordercolor="#000000" bgcolor="#C0C0C0" align="center">'+
'<td class="but1" onmouseover="this.className=\'but2\';" onmouseout="this.className=\'but1\';" onclick=location="info.htm" width="78">Instructions</td>'+
'<td bgcolor="#FFFFFF" bordercolor="#FFFFFF" width="10">&nbsp;|&nbsp;</td>'+
'<td class="but1" onmouseover="this.className=\'but2\';" onmouseout="this.className=\'but1\';" onclick=location="PartsList.htm" width="100">Find My Part</td>'+
'<td bgcolor="#FFFFFF" bordercolor="#FFFFFF" width="10">&nbsp;|&nbsp;</td>'+
'<td class="but1" onmouseover="this.className=\'but2\';" onmouseout="this.className=\'but1\';" onclick=location="view.htm" width="78">View Cart</td>'+
'<td bgcolor="#FFFFFF" bordercolor="#FFFFFF" width="10">&nbsp;|&nbsp;</td>'+
'<td class="but1" onmouseover="this.className=\'but2\';" onmouseout="this.className=\'but1\';" onclick=location="send.htm" width="160">Submit Email Inquiry</td>'+
'<td bgcolor="#FFFFFF" bordercolor="#FFFFFF" width="10">&nbsp;|&nbsp;</td>'+
'<td class="but3" bgcolor="#FFFFFF" bordercolor="#FFFFFF" align="right" width="700"><a href="../index.htm">Return to the Blue Water Yachts Home Page</a></td>'+
'</tr></table>';

document.write(items);

}


// Display Amount due

function cent(geld,skeiding)

{

geld+='';

dat = new Array();

dat=geld.split(".");

if (dat[1]==undefined) dat[1]="00";

else

{

dat[1]=dat[1].substring(0,2)
if (dat[1].length==1) dat[1]+="0";

}

return (dat[0]+skeiding+dat[1]);
}
