//here you place the ids of every element you want.

function showdiv(id) {
	//safe function to show an element with a specified id
	document.getElementById('LongDescription').innerHTML = document.getElementById(id).innerHTML;
}


var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=500,width=500,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

