function poplist(_id)
{	popwindow=window.open("details.cfm?pop=1&id="+_id, "listpop", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=650,height=350,top=100,left=100,fullscreen=0");
	popwindow.focus();
}

function updateImage(place) 
{	document.getElementById('mainImg').src = '/imgs/comms/'+ place;
}

function UIP(place) 
{	document.getElementById('mainImg').src = place;
}



function openform(div)
{	// document.getElementById(div).style.display = 'block';
	
	overheight = $(document.body).getHeight();
	if(overheight < document.viewport.getHeight())
		overheight = document.viewport.getHeight();
	$(document.body).insert(new Element('div', { 'id': 'overlay' }).setStyle({ 'position': 'absolute', 'top': 0, 'left': 0, 'width': '100%', 'opacity': 0.6, height: overheight + 'px', 'background': 'black', 'zIndex': 50 }));
	$(document.body).insert(new Element('div', { 'id': div + 'form' }).setStyle({ 'position': 'absolute', 'top': document.viewport.getScrollOffsets().top + 200 + 'px', 'left': '50%', 'marginLeft': '-150px', 'width': '300px', 'zIndex': 500 }));
	$(div + 'form').update($(div).innerHTML);
}

function closeform(div)
{	$(div + 'form').remove();
	$('overlay').remove();
}