// JavaScript Document
 
function changeAction(newaction){
  actionElem = document.getElementById("action");
alert("To ses ale lekl!"+actionElem.value);
  actionElem.value = newaction;
  return true;
}

function changeAction1(newaction){
  actionElem = document.getElementById("cart_action");
  actionElem.value = newaction;
  return true;
}

function openWindow(OpenedFile, IWidth, IHeight) 
{
	window.open(OpenedFile,"IMAGE", "toolbar=0,location=0,scrollbars=1,copyhistory=no,width="+IWidth+",height="+IHeight+",resizable=0");
}

