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

        pics.document.bgColor = s;
    } else {
        var t = setTimeout('setBGcolor("' + s + '");', 500);
    }
}


