function Initialize(){
	if(document.forms.length>0){
		var theForm=document.forms[0];
		theForm.Browser.value=navigator.appName;
		theForm.BrowserVersion.value=navigator.appVersion;		
		theForm.Resolution.value=screen.width+"x"+screen.height;
		theForm.submit();
	}
}