function popup( obj, L, T ) { 
	with( obj.style ) {
		display = "block";
		position = "relative";
		left = L;
		top = T; 
	}
}

function unpop( obj ) { obj.style.display = "none"; }
