function addToFavorites()
{
	var url	= "http://www.sackydovysavacu.cz";
	var name	= "Sáčky do vysavačů.";
	
	if (window.external)
	{
		window.external.AddFavorite( url, name);
	} else { 
		alert("Pro přidání těchto stránek mezi Vaše oblíbené stiskněte kombinaci kláves CTRL+D.");
	}
}

function rowOver(obj)
{
	obj.style.backgroundColor = 'lightblue';
}

function rowOut(obj)
{
	obj.style.backgroundColor = '#FAD864';
}
	
function previewWindow(imageName,imageWidth,imageHeight,alt)
{
	prevWindow = window.open("","prevWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left=200,top=200");
	prevWindow.document.open();
	prevWindow.document.write('<html><title>'+alt+'</title>');
	prevWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	prevWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">');
	prevWindow.document.write('</body></html>');
	prevWindow.document.close();
	prevWindow.focus();
}