<!--// this function needs the(textfield) to check for double or singel quotes
function changeQuot(changeQuot_field) 
{
var re = Array(2) ;
re[0] = "\"" ;
re[1] = "\'" ;
var Quot =	0 ;

var str = changeQuot_field.value;

	for (count=0;count < 2;count++)
	{
	var pos = str.indexOf(re[count]);
		if (pos != -1)
		{
			while(pos != -1)
			{
				changeQuot_field.value = str.replace(re[count], "");
				str = changeQuot_field.value;
				pos = str.indexOf(re[count]);
			}
			Quot++
			
		}
	}
	
	if (Quot > 0)
	{	    
		changeQuot_field.focus();
		alert("Anführungsstriche können in diesem Feld nicht eingegeben werden !");
	}	
}
//-->
