function winopen_full_pos(url,width,height,_left,_top){
var www = top.window.open(url,'www', 'resizable=yes,scrollbars=yes,menubar=yes,height='+height+',width='+width+',left='+_left+',top='+_top);
}

function winopen_full_posnm(url,width,height,_left,_top,name){
var www = top.window.open(url,name, 'resizable=yes,scrollbars=yes,menubar=yes,status=yes,height='+height+',width='+width+',left='+_left+',top='+_top);
}


function winopen_full_posnm_notb(url,width,height,_left,_top,name){
var www = top.window.open(url,name, 'resizable=yes,scrollbars=yes,menubar=no,height='+height+',width='+width+',left='+_left+',top='+_top);
}