/*var popUpWindow;

function closePopUp()
{
	popUpWindow.close();
}

function openPopUp(page, width, height)
{
	popUpWindow=window.open(page,"min","width="+width+",height="+height);
}*/
function popup( obj, L, T ) { 
	with( obj.style ) {
		display = "block";
		position = "absolute";
		left = L;
		top = T; 
	}
}
function unpop( obj ) { 
	obj.style.display = "none"; 
}
