<!--

function OpenWindow(WinWidth, WinHeight, url)

{

WinWidth = WinWidth + 20;	// allows a bit extra...
WinHeight = WinHeight + 20;

WinProperties = "menubar=no,toolbar=no,location=no,scrollbars=yes,status=yes,resizable=no,width=" + WinWidth + ",height=" + WinHeight;
window.open(url,"url",WinProperties)

}


function DisplayBigImage(ImageID)
{

	OpenWindow(600,600,ImageID);

}


function OpenFixedPopup(width,height,url)

{

window.open(url,"popup","width=" + width + ",height=" + height + "resizable=no,status=no,scrollbars=no");

}


function textCounter(field,cntfield,maxlimit) 
{

	if (field.value.length > maxlimit) // if too long...trim it!
		field.value = field.value.substring(0, maxlimit);
	// otherwise, update 'characters left' counter
	else
		cntfield.value = maxlimit - field.value.length;
}



//-->