function helpWin() {
	var x=450;
	var y=300;
	var xPos = Math.round((screen.width/2)-(x/2));
	var yPos = Math.round((screen.height/3)-(y/3));
	window.open('','popup','location=no,menubar=no,toolbar=no,resizable=no,scrollbars=no,width=' + x + ',height=' + y + ',left=' + xPos + ',top=' +yPos + ',screenX=' + xPos + ',screenY=' + yPos, true);
}

