<!-- Copyright 2006,2007 Bontrager Connection, LLC
 
// http://bontragerconnection.com/ and http://willmaster.com/
 
// Version: July 28, 2007
 
var cX = 0; var cY = 0; var rX = 0; var rY = 0;
 
function AssignPosition(d,X,Y) {

d.style.left = (X) + "px";

d.style.top = (Y) + "px";

}

function HideContent(d) {

if(d.length < 1) { return; }

document.getElementById(d).style.display = "none";

}

function ShowContent(d,X,Y) {

if(d.length < 1) { return; }

var dd = document.getElementById(d);

AssignPosition(dd,X,Y);

dd.style.display = "block";

}


