
function SetHomePage()
{
	this.style.behavior='url(#default#homepage)'; 
	this.setHomePage('http://www.ezo.sk/');
}

function AddFavorite()
{
	window.external.AddFavorite('http://www.ezo.sk', 'EZO');
}

function ShowForPrint()
{
	var location = new String(window.location);
	if (location.indexOf("?") != -1)
	{
		window.open(location + "&print=true");
	}
	else
	{
		window.open(location + "?print=true");
	}
}

function ShowBigImage(ImgName)
{
	window.open("../bigimage.php?image=res/products/normal/" + ImgName + ".jpg");
}

function SendOrder(order, warn)
{
	var str = new String(order.EZO_number.value);
	if (str.length > 0)
	{
		order.action="send.php";
		order.submit();
	}
	else
	{
		alert(warn);
	}
}