﻿//global.js - javscript helper functions
function WriteBackHyperLink(label, postbacks)
{
    document.write("<div class=\"pageBack\">");
    document.write("<A href=\"#\" onclick=\"javascript:history.go(-");
    document.write(postbacks);
    document.write(");\">");
    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;\">");
	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);\">");
	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);\">");
    document.write("<span class=\"addToFavoritesLinkAuxItem\"></span>");
    document.write("<span class=\"addToFavoritesLinkText\">");
    document.write(label);
    document.write("</span></a>");	        
}
    function HandleFileButtonClick()
    {
        document.aspnetForm.myFile.click();
        document.aspnetForm.txtFakeText.value = document.aspnetForm.myFile.value;
    }

