//<!--

var MiniWindow=""
function openMiniWindow(path){
	if(navigator.appName.indexOf("WebTV")==-1){
		MiniWindow=window.open(path,
		               "setupwin",
					   "height=280,width=360,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no");
		//if((navigator.userAgent.toLowerCase().indexOf("msie")==-1)||(parseInt(navigator.appVersion)>=5)) {
			MiniWindow.focus();
		//}
		return false;
	}
	else{
		document.location.href=path;
		return false;
	}
}
// -->
