﻿
        function popitup(url, name, itop, ileft, iWidth, iHeight) {
            newwindow = window.open(url, 'name', 'top='+ itop +',left='+ ileft +',width='+iWidth+ ',height=' + iHeight);
            if (window.focus) { (newwindow.focus()) }
            return true;
        }
