var new_popup;
function pop_up(url,width,height)
{
new_popup=window.open(url,'name','height='+height+',width='+width+',left=0,top=0,resizable=no,scrollbars=no	,toolbar=no,status=no');
if (window.focus) {new_popup.focus()}
}

