if (NS4) {
document.write("<DIV ID='elOne'>Don't...</DIV>");
document.write("<DIV ID='elTwo'>even...</DIV>");
document.write("<DIV ID='elThree'>think...</DIV>");
document.write("<DIV ID='elFour'>about it!</DIV>");
}
function setEls(first) { if (!NS4) {return}
document.elOne.left = document.elAll.document.images["imOne"].x;
document.elOne.top  = document.elAll.document.images["imOne"].y;
document.elTwo.left = document.elAll.document.images["imTwo"].x;
document.elTwo.top  = document.elAll.document.images["imTwo"].y;
document.elThree.left = document.elAll.document.images["imThree"].x;
document.elThree.top  = document.elAll.document.images["imThree"].y;
document.elFour.left = document.elAll.document.images["imFour"].x;
document.elFour.top  = document.elAll.document.images["imFour"].y;
if (first) { document.elOne.visibility = document.elTwo.visibility = document.elThree.visibility = document.elFour.visibility = "visible"};
}

function grabEl(e) {
	whichEl = eval("document." + e.target.moniker);
	if (whichEl != activeEl) { whichEl.moveAbove(activeEl) };
	activeEl = whichEl;
	captureEvents(Event.MOUSEMOVE);
	presentX = e.pageX;
	presentY = e.pageY;
	onmousemove = moveEl;
	e.target.onmouseup = dropEl;
	document.elOne.document.write("<FONT COLOR=white><B>&nbsp;I'm not <BR><BR>&nbsp;<TT>:(</TT></B></FONT>"); document.elOne.document.close();
	document.elTwo.document.write("<FONT COLOR=white><B>&nbsp;I'm not <BR><BR>&nbsp;<TT>:(</TT></B></FONT>"); document.elTwo.document.close();
	document.elThree.document.write("<FONT COLOR=white><B>&nbsp;I'm not <BR><BR>&nbsp;<TT>:(</TT></B></FONT>"); document.elThree.document.close();
	document.elFour.document.write("<FONT COLOR=white><B>&nbsp;I'm not <BR><BR>&nbsp;<TT>:(</TT></B></FONT>"); document.elFour.document.close();
	whichEl.document.write("<FONT COLOR=white><B>&nbsp;I'm on TOP! <BR><BR>&nbsp;<TT>:)</TT></B></FONT>"); whichEl.document.close();
}

function dropEl(e) {
	releaseEvents(Event.MOUSEMOVE)
}

function moveEl(e){
	difX = e.pageX-presentX;
	difY = e.pageY-presentY;
	presentX = e.pageX;
	presentY = e.pageY;
	whichEl.moveBy(difX,difY);
}

if (NS4) {
arDrag = new Array("elOne","elTwo","elThree","elFour");  

for (i=0; i<arDrag.length; i++) {
	temp = eval("document." + arDrag[i] + ".document");
	temp.moniker = arDrag[i];
	temp.onmousedown = grabEl;
}

activeEl = document.elFour;
setEls(true);
}
function redo() { location.reload() }
if (NS4) { captureEvents(Event.RESIZE); onresize=redo}


