<!-- create the unique rollover objects for this page
proceedUp = new Image();
proceedUp.src = "images/cart_button_proceed_up.gif";
proceedOver = new Image();
proceedOver.src = "images/cart_button_proceed_over.gif";
loginbtnUp = new Image();
loginbtnUp.src = "images/cart_button_login_up.gif";
loginbtnOver = new Image();
loginbtnOver.src = "images/cart_button_login_over.gif";
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function copyDetails() { 
	// Copy each of the details
	replicate('billingAddressGivenName','shippingAddressGivenName');
	replicate('billingAddressFamilyName','shippingAddressFamilyName');
	replicate('billingAddressAddress1','shippingAddressAddress1');
	replicate('billingAddressSuburb','shippingAddressSuburb');
	replicate('billingAddressState','shippingAddressState');
	replicate('billingAddressPostcode','shippingAddressPostcode');
}
function replicate(fromId, toId) {
	var fromElement = MM_findObj(fromId);
	var toElement = MM_findObj(toId);
	if(fromElement!== null && toElement !== null) { 
		toElement.value = fromElement.value;
	}
}
-->

