﻿// JScript File

 
function make_blank(controlID)
{
    var control = document.getElementById(controlID);
    if (control != null) {
        if (control.value == "Search")
        {    
        control.value= "";
        }

	 if (control.value == "Product Search")
        {    
        control.value= "";
        }
    }
}
function fill_box(controlID)
{
    var control = document.getElementById(controlID);
    if (control != null) {
        if (control.value == "")
        {    
        control.value= "Search";
        }
    }
}

function fill_product_box(controlID)
{
    var control = document.getElementById(controlID);
    if (control != null) {
        if (control.value == "")
        {    
        control.value= "Product Search";
        }
    }
}