function openClipWindow(url,w,h) {
        var myWindow = window.open(url, '', 'screenX=200, screenY=200, location=0,resizable=0,status=0,titlebar=0,directories=0,toolbar=0,menubar=0,scrollbars=0,status=0,width='+w+',height='+h);
        return;
}

function openNewWindow(url,w,h) {
        var aWindow = window.open(url, '', 'screenX=150, screenY=50, location=1,resizable=1,status=0,titlebar=1,directories=1,toolbar=1,menubar=1,scrollbars=1,status=0,width='+w+',height='+h);
        return;
}
