function openNewWindow(winUrl, winName, winFeatures){
	var newWindow = window.open(winUrl, winName, winFeatures);
	newWindow.focus();
}
