	function textCounter(field, countfield, maxlimit) {
		if (field.value.length > maxlimit) // if too long...trim it!
		field.value = field.value.substring(0, maxlimit);
		// otherwise, update 'characters left' counter
		else 
		countfield.value = maxlimit - field.value.length;
	}

function fixLHN() {
  	var c = document.getElementById("gcenter").offsetHeight;
	var l = document.getElementById("glhn").offsetHeight;
	var r = document.getElementById("grhn").offsetHeight;
	var boxHeight = c;
	
	if (l > boxHeight) {
		boxHeight = l;
	}	
	
	if (r > boxHeight) {
		boxHeight = r;
	}	
	
	boxHeight=boxHeight+30;
	
  	document.getElementById("glhn").style.height = boxHeight +"px";  	
  	document.getElementById("grhn").style.height = boxHeight +"px";
	document.getElementById("gcenter").style.height = (boxHeight-20)+"px";
}

function string_begins_with($string, $search)
 	{
     	return (strncmp($string, $search, strlen($search)) == 0);
 	}	
	
	
	

function popwin(url)
{
		var newwindow;
		newwindow=window.open(url,'name','height=400,width=900, scrollbars=yes, toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no');
		if (window.focus) {newwindow.focus()}
}

function doSearch(term)
{
	window.location ="http://www.iadoreyour.com/gstore/gSearch.php?search="+term;
	//self.location="http://www.iadoreyour.com/gstore/gSearch.php?search="+term;
	return false;
}

function GetCount(){

	dateFuture = new Date(2010,1,13,24,59,59);
	dateNow = new Date();									//grab current date
	amount = dateFuture.getTime() - dateNow.getTime();		//calc milliseconds between dates
	delete dateNow;

	// time is already past
	if(amount < 0){
		document.getElementById('countbox').innerHTML="Now!";
	}
	// date is still good
	else{
		days=0;hours=0;mins=0;secs=0;out="";

		amount = Math.floor(amount/1000);//kill the "milliseconds" so just secs

		days=Math.floor(amount/86400);//days
		amount=amount%86400;

		hours=Math.floor(amount/3600);//hours
		amount=amount%3600;

		mins=Math.floor(amount/60);//minutes
		amount=amount%60;

		secs=Math.floor(amount);//seconds

		if(days != 0){out += days +" day"+((days!=1)?"s":"")+", ";}
		if(days != 0 || hours != 0){out += hours +" hour"+((hours!=1)?"s":"")+", ";}
		if(days != 0 || hours != 0 || mins != 0){out += mins +" minute"+((mins!=1)?"s":"")+" ";}
		//out += secs +" seconds";
		//document.getElementById('countbox').innerHTML=out;

		//setTimeout("GetCount()", 1000);
		document.write(out);
		return out;
	}
}

