<!--function openDialogBox(url, w, h, scrollbars, name) {	// Figure top and left (for centering on screen)	var left=Math.round((self.screen.availWidth-w)/2);	var top=Math.round((self.screen.availHeight-h)/2);	if (!scrollbars) {		scrollbars='yes';	}		if (!name) {		name='';	}		window.open(url, name, 'width=' + w + ', height=' + h + ', top=' + top + ', left=' + left + ', menubar=no, status=no, location=no, toolbar=no, statusbar=no, status=no, scrollbars=' + scrollbars + ', resizable=yes');}function openWindow(url, w, h, name) {	// Figure top and left (for centering on screen)	var left=Math.round((self.screen.availWidth-w)/2);	var top=Math.round((self.screen.availHeight-h)/2);	if (!name) {		name='';	}		window.open(url, name, 'width=' + w + ', height=' + h + ', top=' + top + ', left=' + left + ', menubar=yes, status=yes, location=yes, toolbar=yes, statusbar=yes, status=yes, scrollbars=yes, resizable=yes');}function openPreviewWin(page, w, h, scrollbars) {	var winW=50; var winX=0;	var winH=50; var winY=0;		var winName='';	if (!scrollbars) {		scrollbars='yes';	}		var left=Math.round((self.screen.availWidth-w)/2);	var top=Math.round((self.screen.availHeight-h)/2);	settings = 'width='+w+',height='+h+', top='+top+',left='+left+', scrollbars=' + scrollbars + ',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';	win=window.open(page,winName,settings);	if (!win.opener) {		win.opener = window;	}}function autoactivate(code) {	document.write(code);}function clearFieldDefault(which) {	if (which.defaultValue==which.value) which.value="";}//  End -->