﻿/// <reference path="jquery-1.4.1.min.js" />
function pagetoolsflyopen(element) {
    $(element).closest("#divpagetoolscontrol").children().toggle();
    $("#divwallbyline").addClass("toolsopen");
}
function pagetoolsflyclose(element) {
    linktopageflyclose(element);
    $(element).closest("#divpagetoolscontrol").children().toggle();
    $("#divwallbyline").removeClass("toolsopen");
}
function linktopageflyopen(element) {
    $(element).next().show("fast");
}
function linktopageflyclose(element) {
    $(element).closest("#divpagetoolsflyout").find("#divlinktothispageflyout").hide();
}

function openwin(theurl) {
    var thepopupwin = window.open(theurl, '', 'toolbar=yes,titlebar=yes,menubar=yes,resizable=yes,status=yes,location=yes,scrollbars=yes,width=400,height=335', false);
    thepopupwin.focus();
}
