window.onload = function()
{
    if (navigator.product=="Gecko" && navigator.userAgent.indexOf("rv:1.7")>=-1)
    {
	var s = document.body.style;
	s.display = "none";
	s.display = "";
    }
}

function AddToFavorite(document_title)
{
    if (window.sidebar)
	window.sidebar.addPanel(document_title, document.location, "");
    window.external.AddFavorite(document.location, document_title);
}

function ShowPhoto(src)
{
    document.getElementById('pc_photo').style.display = 'block';
    document.getElementById('pc_text').style.display = 'none';
    document.getElementById('pc_photo_src').src = src;
}

function HidePhoto()
{
    document.getElementById('pc_photo').style.display = 'none';
    document.getElementById('pc_text').style.display = 'block';
    document.getElementById('pc_photo_src').src = 'img/pad_loading.gif';
}

