<!--
function popup(target,windowname,w,h){
	var newWindow = null;var i = 0;
	if (navigator.appName == 'Microsoft Internet Explorer')	{
		if ( (navigator.appVersion.indexOf('Windows 3.1') < 0) && (navigator.appVersion.indexOf('Macintosh') < 0)  ) {
			newWindow = window.open('',windowname,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h);
			if (newWindow){
				newWindow.close();
				while((! newWindow.closed)&&(i<100))i++;
			}
		}
	}		
	newWindow = window.open(target,windowname,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h);
	if (navigator.appName != 'Microsoft Internet Explorer')	{
		newWindow.focus()
	}
}
//-->
