
function new_win(w,h,title)
{
	w1=window.open('',title,'resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h);    

{
	w1.focus();
}

}


