﻿function PopThankYou()
{	
	var objWin = window.open('thank-you.aspx', 'ThankYou', 'width=400,height=200');
	objWin.focus();
}

//Utility Functions

Utility = function()
{
	//empty constructor
}

Utility.removeWatermark = function(el, text)
{
	if (el.value === text)
	{
		el.value = '';
	}
}

Utility.setWatermark = function(el, text)
{
	if (el.value === '')
	{
		el.value = text;
	}
}

Utility.toggleDetails = function(id)
{
	var el = document.getElementById('searchDetail' + id);
	
	if (el !== 'undefined')
	{
		if (el.style.display === 'none')
		{
			el.style.display = '';
		}
		
		else
		{
			el.style.display = 'none';
		}
	}	
}

