//Variables for Domdrag.
var theHandle1 = document.getElementById("handle1");
var theRoot1   = document.getElementById("root1");
var theHandle2 = document.getElementById("handle2");
var theRoot2   = document.getElementById("root2");
var theHandle3 = document.getElementById("handle3");
var theRoot3   = document.getElementById("root3");
var theHandle4 = document.getElementById("handle4");
var theRoot4   = document.getElementById("root4");
Drag.init(theHandle1, theRoot1, -685, 15, 40, 40);
Drag.init(theHandle2, theRoot2, -685, 15, 140, 140);
Drag.init(theHandle3, theRoot3, -685, 15, 240, 240);
Drag.init(theHandle4, theRoot4, -685, 15, 340, 340);

//Function to open new windows. Needed to replace _new functionality for compatibility with XHTML.
function newWindow(page)
{
	window.open(page);
}