function new_win(w,h,location)
{

var wide = w;
var high = h;

window.open(location, "new_win", "resizable=no, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, width="+wide+", height="+high+", top=0, left=0,innerHeight=0,innerWidth=0,outerHeight=0,outerWidth=0,channelmode=0")

}


		function newwin(url,name,features) {
		
  window.open(url,name,features);
}