// JavaScript Document

function popupWindow(url,winName, feature) {
  var attr = feature;
  if (attr == '') {
	  attr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,top=0,left=0,height=400';
  }
  window.open(url,winName,attr)
}
//tab
function change_option(number,index){
	for (var i = 1; i <= number; i++) {
      document.getElementById('current' + i).className = '';
	  document.getElementById('content' + i).style.display = 'none';
	}
  document.getElementById('current' + index).className = 'current';
  document.getElementById('content' + index).style.display = 'block';
}

function quickNav(link) {
  if (link != '') {
    location.href = link;
  } 
}

function change(country) {
  if ('CANADA' == country.toUpperCase()) {
    location.href = 'basket/checkout.php?c=canada';
  } else {
    location.href = 'basket/checkout.php?c=usa';
  }
}

function changeLocation(country) {
  if ('UK' == country.toUpperCase()) {
    location.href = '/uk/';
  } else {
    location.href = '/';
  }
}
//-->
