//javascript:window.history.forward(1);

function runQuickSearch()
{
	blnAllowSubmit = false;
	if (document.frmQuickSearch['txtKeyword'].value.trim() != '')
	{
		document.frmQuickSearch.action += '&Keyword=' + document.frmQuickSearch['txtKeyword'].value.trim();
		blnAllowSubmit = true;
	}

	//If we have reached this point and the user hasn't made any selections, don't let the submit to continue
	if (blnAllowSubmit == false)
		alert('Please enter at least one keyword to search on');
		
		setTimeout("EnableProgressIndicator()",50);
			
		return blnAllowSubmit;
	}
   
	function EnableProgressIndicator() 
	{
		//Disable the EnableProgressIndicator
		return;

		imgCtrl = 'imgProgressMeter';
		imgsrc = 'http://site.posterunlimited.com/images/progress.gif';
		
		var img = document.getElementById(imgCtrl);
		img.src = imgsrc;
		
		if (parseInt(navigator.appVersion)>3) {
 
		 if (navigator.appName=="Netscape") {
		  winW = window.innerWidth-16;
		  winH = window.innerHeight-16;
		 }
		 if (navigator.appName.indexOf("Microsoft")!=-1) {
		  winW = document.body.offsetWidth-20;
		  winH = document.body.offsetHeight-20;
		 }
		}
		divProgress.style.display = '';
		divProgress.style.height = 100;
		divProgress.style.width = 300;
		divProgress.style.top = 100;
		divProgress.style.left = (winW - 300 )/ 2;
	}


