<!-- hide
	
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function openWin(html,name,w,h,features) {
	x = (screen.availWidth - w) / 2
	y = (screen.availHeight - h - 100) / 2 
	win = window.open(html,name,'width='+w+',height='+h+','+features)
	win.moveTo(screen.availWidth/2-360,screen.availHeight/2-305)
	win.focus()
	}
// show -->