function mypop(url,title,w,h)
{
    mypopMain (url,title,w,h,'no','yes',10,10,'yes')
    
}

function mypopresize(url,title,w,h)
{
    mypopMain (url,title,w,h,'yes','yes',10,10,'yes')
}

function mypopMain (url,title,w,h,resizable1,scrollbars1,top1,left1,status1)
{
    var param = 'width='+w+',height='+h+',resizable='+resizable1;
    param += ',scrollbars='+scrollbars1+',top='+top1+',left='+left1+',status='+status1;
    
    var newWindow = window.open(url,title,param);

    if(newWindow != null)
    {
        newWindow.focus();
    }
    
}

function closeWin()
{
    window.close();
}

function timer(timeout)
{
    
    var time = timeout;
    
    if(time == null)
    {
            time = 4000;
    }
    timerID = setTimeout("closeWin()", time);
    
}

function reloadParentWindow()
{
    window.opener.refreshForm();
}