var n;

function book()
{
    url = 'http://www.hairdesignml.cz/';
    title = 'Kadeřnictví hair design Mariánské Lázně';

    if (window.sidebar)
	window.sidebar.addPanel(title, url, "");
    else if (window.external)
	window.external.AddFavorite(url, title);
    else if(window.opera && window.print)
	return true;

    return false;
}

function startujem()
{
    if (!document.getElementsByTagName)
	return false;

    // popup odkazy
    pops();
}

function pops()
{
    var odkaz = document.getElementsByTagName("a");
    for (i=0;i<odkaz.length;i++)
	if (odkaz[i].className.match("popup"))
	    {
		if (odkaz[i].className.match("p640"))
		    odkaz[i].onclick = function () { return !window.open(this.href, n, 'resizable=0,width=660,height=500'); }
		else
		    odkaz[i].onclick = function () { return !window.open(this.href, n, 'resizable=0,width=553,height=420'); }
		n++;
	    }
}
window.onload = startujem;


