// JavaScript Document

function goToStartWeb(timer)
{
	timer--;
	if(timer == -1)
	{
		document.location = "http://muzeum-trzesacz.pl/";
	}
	else
	{
		//alert(document.getElementById('timer'));
		document.getElementById('timer').innerHTML = timer;
		setTimeout("goToStartWeb(" + timer + ")", 1000);
	}		
}

function okno(url,width,height)
{
	var Win = window.open(url,'display','width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no');
}

function opened(id, width, height) {
	if(!width) width=320;
	if(!height) height=240;
 	var Win = window.open("galeria/show.php?id=" + id,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no');
}

function openedn(clink, width, height) {
 var Win = window.open(clink,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no');
}

function openeds(clink, width, height) {
 var Win = window.open(clink,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no');
}

function addbookmark()
{
	var bookmarkurl='http://interglobus.pl';
	var bookmarktitle='Interglobus Tour'; 

	if (document.all)
	{
		window.external.AddFavorite(bookmarkurl,bookmarktitle);
	}
} 