function popUp(url, name, width, height) {
		var settings = "titlebar=no,toolbar=no,location=no,directories=no,"+
			"status=no,menubar=no,scrollbars=no,"+
			"resizable=no,width="+width+",height="+height;
		window.open(url,name,settings);
}
