function newWindow(url,name,w,h,tool,menu,dir,loc,scroll,status,resize) {
	var str = "left=0,screenX=0,top=0,screenY=0";
	str += ",height="+h;
	str += ",width="+w;
	str += ",toolbar="+tool;
	str += ",menubar="+menu;
	str += ",directories="+dir;
	str += ",location=" +loc;
	str += ",scrollbars=" +scroll;
	str += ",status=" +status;
	str += ",resizable="+resize;
	window.open(url, name, str).focus();
}