function winOpen(name)
{
    var win = window.open('', name, 'toolbar=0,status=0,resizable=0,scrollbars=0,width=200,height=100');
    win.focus();
}