<!-- this file contains javascript code that is commonally used throughout the HSR application. -->

	<!--
	if (document.images)
	{
		preload_image_object = new Image();
	  
		// set image url
		image_url = new Array();
		image_url[0] = "../images/spacer.gif";
		image_url[1] = "../images/arrow_rt.gif";
		image_url[1] = "../images/arrow_down.gif";
		var i = 0;
		for(i=0; i<=3; i++)
		{
			preload_image_object.src = image_url[i];
		} 
    }
    //-->
	
	// this function will prompt the user to validate the current action.
	function verifyDelete()
	{
		if (confirm('Are you certain that you want to delete your account?'))
		{
			return true;
		}
		return false;
	}

