<!-- Begin
function right(e) { if ((navigator.appName == "Netscape" && e.which == 3) || (navigator.appName=='Microsoft Internet Explorer' && event.button==2)) { alert('Saving photos is not permitted'); return false;} return true; }
function rightSilent(e) { return false; }
function trap() {
	if(document.images) {
		for(i=0;i< document.images.length;i++) {
			document.images[i].onmousedown=right;
			//document.images[i].onmouseup=right;
			document.images[i].oncontextmenu=rightSilent;
		}
	}
}
// End -->


<!-- Begin
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;
}
// End -->	
	
	
<!-- Begin
function messengerPopUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}
// End -->


