function OpenDownloadUrl() {
	var url = 'http://games.aol.com/game/qbert-2005/23783/detail';
	var windowName = 'download';
	var w = 1024;
	var h = 768;
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    winprops = 'scrollbars=yes'+',resizable'+',menubar=yes'+',titlebar=yes'+',toolbar=yes'+',location=yes';
    win = window.open(url, windowName, winprops);
    if (parseInt(navigator.appVersion) >= 4) { 
        win.window.focus(); 
    }
}
