<!--

function winOpen(url, name, width, height, toolbar, menubar, scrollbars, resizable) {
	var feat = "left=" + (screen.width/2-width/2) + ",top=" + (screen.height/2-height/2) + ",width=" + width + ",height=" + height + ",toolbar=" + toolbar + ",menubar=" + menubar + ",scrollbars=" + scrollbars + ",resizable=" + resizable
	window.open(url, name, feat)
}

//-->