function popUp(URL)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=650,height=700,left = 300,top = 100');");
}

function toggleDisplay(itemId)
{
	var item = document.getElementById(itemId);

	if (item.className == 'hide') {
		item.className = 'show';		
	}
	else {
		item.className = 'hide';
	}
}

function showElement(itemId)
{
	var item = document.getElementById(itemId);
	item.className = 'show';
}

function showBlockElement(itemId)
{
	var item = document.getElementById(itemId);
	item.className = 'show-block';
}

function hideElement(itemId)
{
	var item = document.getElementById(itemId);
	item.className = 'hide';
}

function swap(imgId, appendix)
{
	var img = document.getElementById(imgId);
	path = img.src.substring(0, img.src.indexOf(imgId));
	img.src = path + imgId + appendix;
}
