﻿// JScript File
<!--//
/*
toggleField()
Param: obj object - This is the form field that calls this function
Param: val string - This is the string that is matched against the contents of the form field.
This function clears a targeted form field.
*/
function toggleField(obj,val)
{
    if(obj.value == val)
    {
	    obj.value = "";
    }
    else if(obj.value == "")
    {
	    obj.value = val;
    }
}
/**/
function swapImage(obj,val)
{
    if(document.images){
        obj.src = val;
    }
}

function openNewWindow(thePage,height,width){
	

	
theWindow = window.open (thePage, 'newwindow', 'menubar=no,width='+width+',height='+height+',toolbar=no,scrollbars=yes,resizable=yes,top=20');

}
//-->