﻿function addSearchTextToUrl (txt) 
{
	if(document.search.keyword.value == "" || document.search.keyword.value == "Search") return false;
	document.search.action = document.search.action + "?search=" + document.search.keyword.value;
	return true;
}

function clearText() 
{ 
	document.search.keyword.value = ""; 
}

function newGalleryWin(theURL) {
	var wintImages=window.open(theURL,'wintImages','height=586,width=590,status=no,toolbar=no,scrollbars=yes');
	wintImages.moveTo(screen.availWidth/2-(590/2),screen.availHeight/2-(586/2));
	return false;
}

function CancelAction() {
    window.opener.document.parentWindow.refreshPage();
	window.close()
}