function pop_img(sImage, iWidth, iHeight)
{

  xWindow = (window.screen.width - iWidth) / 2;
  yWindow = (window.screen.height - iHeight) / 2;

  oWin = window.open('', 'oWin','height='+iHeight+', width='+iWidth+', left='+xWindow+', top='+yWindow+', screenX='+xWindow+", screenY="+yWindow+', resizable=no, scrollbars=no, toolbar=no, status=no');
  oWin.document.writeln('<html>\n<head>\n<title>Sportainment</title>\n</head>\n<body style="margin: 0em; padding: 0em">\n<div><img src="'+sImage+'" alt=""></div>\n</body>\n</html>');
}


function openQTwin(url,width,height) {
  var qtwin = window.open(url,"song",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height);
  qtwin.focus();
}

