var subWindow = null
function newWin(url)    {

if (url.indexOf('http')<0){
	url = "http://games.espn.go.com"+url
}
    if (!subWindow || subWindow.closed) {
    subWindow = window.open(url,"newWin",'width=800,height=525,resizable=yes,scrollbars=yes,location=yes,status=yes,toolbar=yes,menubar=yes,directories=yes')
} else {
    subWindow.focus();
    subWindow = window.open(url,"newWin",'width=800,height=525,resizable=yes,scrollbars=yes,location=yes,status=yes,toolbar=yes,menubar=yes,directories=yes')
        
    }
}                
