// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function ZoomImage(sPicURL) {      
window.open( "../WebRoot/EatYourWords/SF/assets/html/zoomd41d.html?"+sPicURL, "","resizable=1,height=300,width=300");    
}

function textCounter(field, countfield, maxlimit) {
	if (field.value.length > maxlimit)
		{field.value = field.value.substring(0, maxlimit);}
	else
		{countfield.value = maxlimit - field.value.length;}
}