function openMe(location,width,height) {
    pics=window.open(location,'picture',"width=" + width + ",height=" +
height + ",resizable=1,scrollbars=1,top=1,left=1");
    setBGcolor('black');
    // pics.document.bgColor='black';
    pics.moveTo(0,0);
    pics.focus();
}
function setBGcolor(s) {
    if (pics && pics.document && pics.document.readyState == 'complete') {

        pics.document.bgColor = s;
    } else {
        var t = setTimeout('setBGcolor("' + s + '");', 500);
    }
}


