


// Drop dwon div for minicart 
var persistclose=0 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 13 //set x offset of bar in pixels
var startY = 5 //set y offset of bar in pixels
var verticalpos="fromtop" //enter "fromtop" or "frombottom"

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function closebar(){
if (persistclose)
document.cookie="remainclosed=1"
document.getElementById("topbar").style.display="none"
}

function staticbar(){
	barheight=document.getElementById("topbar").offsetHeight
	var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
	var d = document;
	function ml(id){
		var el=d.getElementById(id);
		if (!persistclose || persistclose && get_cookie("remainclosed")=="")
		el.style.display="block"
		if(d.layers)el.style=el;
		el.sP=function(x,y){this.style.right=x+"px";this.style.top=y+"px";};
		el.x = startX;
		if (verticalpos=="fromtop")
		el.y = startY;
		else{
		el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
		el.y -= startY;
		}
		return el;
	}
	window.stayTopLeft=function(){
		if (verticalpos=="fromtop"){
		var pY = ns ? pageYOffset : iecompattest().scrollTop;
		ftlObj.y += (pY + startY - ftlObj.y)/8;
		}
		else{
		var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
		ftlObj.y += (pY - startY - ftlObj.y)/8;
		}
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 20);
	}
	ftlObj = ml("topbar");
	stayTopLeft();
}




function toggle_visibility(id1, id2) {
       var e1 = document.getElementById(id1);
	   var e2 = document.getElementById(id2);
       
	   if(e1.style.display == 'block')
	   {
          e1.style.display = 'none';
		   e2.style.display = 'block';
	    }
       else
	   {   
	   e2.style.display = 'none';
	   e1.style.display = 'block';
		   }
    }
	

/*
Make sure that textBox only contain number
*/
function checkNumber(textBox)
{
	while (textBox.value.length > 0 && isNaN(textBox.value)) {
		textBox.value = textBox.value.substring(0, textBox.value.length - 1)
	}
	
	textBox.value = trim(textBox.value);
/*	if (textBox.value.length == 0) {
		textBox.value = 0;		
	} else {
		textBox.value = parseInt(textBox.value);
	}*/
}


function sameAsBilling(checkSame)
{
	
	if(checkSame.checked)
	{
   document.getElementById("shipping_firstname").value=document.getElementById("bill_firstname").value ;
    document.getElementById("shipping_lastname").value=document.getElementById("bill_lastname").value ;
	 document.getElementById("shipping_email").value=document.getElementById("bill_email").value ;
	 
	 
	 document.getElementById("shipping_number1_countrycode").value=document.getElementById("bill_number1_countrycode").value ; 
	  document.getElementById("shipping_number1_areacode").value=document.getElementById("bill_number1_areacode").value ;
		   document.getElementById("shipping_number1_number").value=document.getElementById("bill_number1_number").value ;
	  
	  document.getElementById("shipping_address").value=document.getElementById("bill_address").value ;
	   document.getElementById("shipping_city").value=document.getElementById("bill_city").value ;
	    document.getElementById("shipping_country").value=document.getElementById("bill_country").value ;
		 document.getElementById("shipping_postal_code").value=document.getElementById("billing_postal_code").value ;
		  
	}
	else
	{
	document.getElementById("shipping_firstname").value="";
    document.getElementById("shipping_lastname").value="";
	 document.getElementById("shipping_email").value="";
	 
	 document.getElementById("shipping_number1_countrycode").value="";
	  document.getElementById("shipping_number1_areacode").value="";
	 document.getElementById("shipping_number1_number").value="";
	  document.getElementById("shipping_address").value="";
	   document.getElementById("shipping_city").value="";
	    document.getElementById("shipping_country").value="";
		 document.getElementById("shipping_postal_code").value="";
		
		  
	}

}



function changeValue(id, value)
{
 document.getElementById(id).value=value ;
}