function newSize(ImgTag,FitWidth,FitHeight)
{var image=new Image();image.src=ImgTag.src;if(image.width>0&&image.height>0){if(image.width/image.height>=FitWidth/FitHeight){if(image.width>FitWidth){ImgTag.width=FitWidth;ImgTag.height=(image.height*FitWidth)/image.width;}
else{ImgTag.width=image.width;ImgTag.height=image.height;}}
else{if(image.height>FitHeight){ImgTag.height=FitHeight;ImgTag.width=(image.width*FitHeight)/image.height;}
else{ImgTag.width=image.width;ImgTag.height=image.height;}}}};function characterCount(field,count,maxchars){var realchars=field.value.replace(/\t|\r|\n|\r\n/g,'');var excesschars=realchars.length-maxchars;if(excesschars>0){field.value=field.value.substring(0,excesschars);alert("Error:\n\n- You are only allowed to enter up to"+maxchars+" characters.");}else{count.value=maxchars-realchars.length;}}