
function addtofav(linkUrl,linkTitle){
   if (!document.all) {
      alert('Please hit ctrl-d to bookmark this page');
   }
   else external.AddFavorite(linkUrl,linkTitle);
   return false;
}

function img_open(link) {
  open(link,"_img","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=680,height=550");
}

// buyItem - adds an item to the shooping basket
function buyItem(newItem, newPrice, newQuantity, newweight, returnpage) {
  if (newQuantity <= 0) {
    rc = alert('Du kan inte köpa 0st.');
  }
  //else if (confirm('Lägg '+newQuantity+' x '+newItem+' i kundvagnen')) {
    index = document.cookie.indexOf("Korgen");
		countend = 0;
		countbegin = 0;
		if (index != -1) {
     	countbegin = (document.cookie.indexOf("=", index) + 1);
     	countend = document.cookie.indexOf(";", index);
     	if (countend == -1) {
     		countend = document.cookie.length;
     	}
		}
    document.cookie="Korgen="+document.cookie.substring(countbegin, countend)+"["+newItem+"#"+newPrice+"#"+newQuantity+"#"+newweight+"]";
		location = returnpage; 
//  }	 
}