﻿// JScript File
// change menu backgroung image
function ChangeMenuBg(id)
{
document.getElementById(id).style.backgroundColor = "#3d3d3d";
}
function ReturnMenuBg(id)
{
document.getElementById(id).style.backgroundColor = "#242424";
}

// remove text in the textbox on focus
function removeText(txt)
{
document.getElementById(txt).value = "";
}
// add text in the textbox on focus
function addText(txt, value)
{
if(document.getElementById(txt).value === "")
{
document.getElementById(txt).value = value;
}
}
function showLargeImage(image)
{
window.open("product_images/"+image,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=500, height=500");
}
//// validate text feilds
//function validateTextFields(txt, validator, value)
//{
//if(document.getElementById(txt).value === value)
//{
//document.getElementById(validator).style.visibility = "visible";
//return false;
//}

// show/hide div
function ShowHideDiv(id)
{
if (document.getElementById(id).style.visibility == "hidden")
{
document.getElementById(id).style.visibility = "visible";
}
else if (document.getElementById(id).style.visibility == "visible")
{
document.getElementById(id).style.visibility = "hidden";
}
}