//<!--
function openWin(url, title, properties) {
	myWindow = window.open(url, title, properties);
	myWindow.focus();
}
//-->