/*
 PopUp code to generate single second window for external links that retains focus. 
*/
var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function popUpWin(url, strWidth, strHeight){
	
//	closeWin();

	var tools="";
	tools = "resizable,toolbar=yes,location=yes,status=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

