/* DIV SWAP */

function change2New(bozo) {
	document.getElementById(bozo).className = "ParentDiv02";
}

function change2Orig(bozo) {
	document.getElementById(bozo).className = "ParentDiv01";
}

function selectCode(happy) {
	document.getElementById(happy).select();
}