// JavaScript Document
// This file contains JavaScript functions for the NIRI NY Website

///////////////////////////////////////////////////////////////////////
// Used to clear the txtSearch textbox from text. 
function ClearTextBox(objText)
{	
	objText.value = "";
}

///////////////////////////////////////////////////////////////////////
// Used t fix the Internet Explorer 6 PNG transparency issue.
// Note: Make sure that DD_belatedPNG.js file is included in your HTML
// code prior to using this function.
function FixIE6PNG()
{
  DD_belatedPNG.fix('a:hover');
  DD_belatedPNG.fix('.png_bg');
}
