﻿//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("<div class=\"pageBackLinkAuxItem\">");
    document.write("</div>");
    document.write("<div class=\"pageBackLinkText\">");
    document.write(label);
    document.write("</div>");
    document.write("</A>");
    document.write("</div>");
}

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(label)
{
    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("<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>");	        
}
