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


