// Gets browser properties and stores them in a form variable
function dispprop() {
document.aform.ScrWid.value = window.screen.width;
document.aform.ScrHgt.value = window.screen.height;
document.aform.ColDpth.value = window.screen.colorDepth + "-bit";
document.aform.Vers.value = navigator.userAgent;
}
