addEvent(window, 'load', initCorners);

function talk_to_the_doctor() {
	document.addcomm.darlects.value="7";
	}

function initCorners() {
	var settings = {
      	tl: { radius: 5 },
      	tr: { radius: 5 },
      	bl: { radius: 5 },
      	br: { radius: 5 },
      	antiAlias: true
	}
	curvyCorners(settings, ".myBox");
	var settings2 = {
      	tl: { radius: 4 },
      	tr: { radius: 4 },
      	bl: { radius: 4 },
      	br: { radius: 4 },
      	antiAlias: true
	}
	curvyCorners(settings2, ".homeCurve");
	var settings3 = {
      	tl: { radius: 5 },
      	tr: { radius: 5 },
      	bl: { radius: 5 },
      	br: { radius: 5 },
      	antiAlias: true
	}
	curvyCorners(settings3, ".myBook");
	}

function clearThis(el) {
if (el.defaultValue==el.value) el.value = ""
}
