<!--function winOpen(file,w,h){	bOS = navigator.platform.indexOf("W");	saf = navigator.userAgent.indexOf("Safari");//	w = 640;//	h = 496;	nx = parseInt(w);	nh = parseInt(h);	if(bOS >= 0){		nx = nx + 10;		if(navigator.appName.charAt(0) == "N"){			nh = nh + 29;		} else {			nh = nh + 49;		}	} else {		if(saf >= 0){			nh = nh + 24;		} else {			nh = nh + 16;		}	}wob = window.open(file,"qtvrbig","width="+nx+",height="+nh+",toolbar=no,location=no,directories=no,scrollbars=no,resizable=no");wob.moveTo(50,50);wob.resizeTo(nx,nh);wob.focus();}function winClose(){	wob.close();}// -->