// JavaScript Document
function blockRightClick(e) {
	return false;
}

function getFlashObj(movie){
   if (window.document[movie]) {
      return window.document[movie];
   }
   if (navigator.appName.indexOf("Microsoft Internet")==-1) {
      if (document.embeds && document.embeds[movie]) {
         return document.embeds[movie]; 
      }
   } else {
      return document.getElementById(movie);
   }
}
function resizeFlash(flashHeight) {
	var customDesigner = getFlashObj('customDesigner');
	customDesigner.height = flashHeight;
}
function updateCheckoutLink() {
	var linkForUpdate = document.getElementById("checkoutLink");
	var cartConditionText = document.getElementById("inProductCart").innerHTML;
	
	if(cartConditionText.search("tuščias")==-1) {
		linkForUpdate.style.visibility="visible";
	}
	else {
		linkForUpdate.style.visibility="hidden";
	}
}

document.oncontextmenu=blockRightClick;