function openWindow(wURL,wName,wWidth,wHeight,wOptions)
{
/* <A HREF="javascript:openWindow('wURL.html','wName','640','480','status=1,scrollbars=1,resizable=1,directories=0')"></A> */
sW = Math.round((screen.width/2)-(wWidth/2));
sH = Math.round((screen.height/2)-((wHeight/2)+27));
window.open(wURL,wName,'width='+wWidth+',height='+wHeight+','+wOptions+',left='+sW+',top='+sH);
}

function openWindow2(id){
var detayPopup=window.open('http://www.ligtv.com.tr/istatistikler/Karsilastirma.aspx?ic='+id,'Istatistikler','status=0,toolbar=0,location=0,menubar=0,directories=0,resizable=1,scrollbars=0,height=600,width=900');
detayPopup.moveTo(250, 100);
detayPopup.focus();
}
