﻿

function GoToPage(thePage) {
    if (window.event)
        window.event.returnValue = false;
    window.location.href = thePage;
}

function over(param, boja) {
    jQuery(param).css("border", "solid 1px #cccccc");
    jQuery(param).css("background-color", boja); //"#f4fcfe"
}
function out(param) {
    jQuery(param).css("border", "solid 1px Transparent");
    jQuery(param).css("background-color", "Transparent");
}

var theModalDiv = null;
function ShowShadow() {
    HideShadow();
    theModalDiv = jQuery("#shadow").modal();
    theModalDiv.open();
}
function HideShadow() {
    if (theModalDiv != null && theModalDiv.close)
        theModalDiv.close();
    theModalDiv = null;
}


