function openwindow(skrypt,a,width,height,posX,posY)
{
 var newWindow=window.open(skrypt,a,"height="+height+",width="+width+",resizable=0,scrollbars=0,toolbar=no,status=no,alwaysRaised");
 newWindow.moveTo(posX,posY);
}

function ow(skrypt,a,width,height,posX,posY)
{
 var newWindow=window.open(skrypt,a,"height="+height+",width="+width+",resizable=yes,scrollbars=yes,toolbar=no,status=no,alwaysRaised");
 if ( posX > 0 && posY > 0 ) {
    newWindow.moveTo(posX,posY);
 }
 newWindow.focus();
}
