﻿//global.js - javscript helper functions
function WriteBackHyperLink(label, postbacks)
{
    document.write("<div class=\"pageBack\">");
    //document.write("<a href=\"#\" onclick=\"javascript:history.go(-" + postbacks + ");\" onkeypress=\"javascript:history.go(-" + postbacks + ");\">");
    document.write("<a href=\"javascript:history.go(-" + postbacks + ");\" onkeypress=\"javascript:history.go(-" + postbacks + ");\">");
    //document.write("<a href=\"javascript:history.go(-1);\" onkeypress=\"javascript:history.go(-" + postbacks + ");\">");
    document.write("<div class=\"pageBackLinkAuxItem\">");
    document.write("</div>");
    document.write("<div class=\"pageBackLinkText\">");
    document.write(label);
    document.write("</div>");
    document.write("</a>");
    document.write("</div>");
    //<a href="javascript:history.back();">back</a>
}

function WritePrintHyperlink(label)
{
	document.write("<div class=\"printLink\">");
	document.write("<a href=\"#\" onclick=\"javascript:window.print();return false;\" onkeypress=\"javascript:window.print();return false;\">");
	document.write("<div class=\"printLinkAuxItem\">");
	document.write("</div>");
	document.write("<div class=\"printLinkText\">");
	document.write(label);
	document.write("</div>");
    document.write("</a>");
    document.write("</div>");
}

function SetAsDefaultHomePage(url, label)
{
//    document.write("<a href=\"#\" onclick=\"this.style.behavior='url(#default#homepage)';this.setHomePage('" + url + "');\" onkeypress=\"this.style.behavior='url(#default#homepage)';this.setHomePage('" + url + "');\">");
//	document.write("<span class=\"setHomePageLinkAuxItem\"></span>");
//    document.write("<span class=\"setHomePageLinkText\">");
//    document.write(label);
//    document.write("</span></a>");

    if(!window.sidebar)
    {
        //document.write("<a href=\"#\" onclick=\"this.style.behavior='url(#default#homepage)';this.setHomePage(location.href);\" onkeypress=\"this.style.behavior='url(#default#homepage)';this.setHomePage(location.href);\">");
        document.write("<a href=\"#\" onclick=\"this.style.behavior='url(#default#homepage)';this.setHomePage('" + url + "');\" onkeypress=\"this.style.behavior='url(#default#homepage)';this.setHomePage('" + url + "');\">");
        
	    document.write("<span class=\"setHomePageLinkAuxItem\"></span>");
        document.write("<span class=\"setHomePageLinkText\">");
        document.write(label);
        document.write("</span></a>");
    }
    
}

function AddToFavorites(label)
{
//    document.write("<a href=\"#\" onclick=\"javascript:window.external.addFavorite(location.href,document.title);\" onkeypress=\"javascript:window.external.addFavorite(location.href,document.title);\">");
//    document.write("<span class=\"addToFavoritesLinkAuxItem\"></span>");
//    document.write("<span class=\"addToFavoritesLinkText\">");
//    document.write(label);
//    document.write("</span></a>");

if(window.sidebar)
document.write("<a href=\"javascript:window.sidebar.addPanel(document.title, location.href, '');\">");  
    
else
document.write("<a href=\"javascript:window.external.addFavorite(location.href,document.title);\">");
         
    document.write("<span class=\"addToFavoritesLinkAuxItem\"></span>");
    document.write("<span class=\"addToFavoritesLinkText\">");
    document.write(label);
    document.write("</span></a>");	        
}
