//
// @package WordPress
// @subpackage GSN_Theme
// @copyright Copyright ©2010 Gherkin Shopping, a Division of Gherkin Domains Ltd. All Rights Reserved.
//

function DoWaterMarkOnBlur(txt, text) {
	if (txt.value == "") {
		txt.value = text;
	}
}

function DoWaterMarkOnFocus(txt, text) {
	if (txt.value == text) {
		txt.value = "";
	}
}

