//  Author:  Mitch Allen (c) 2003
// Program:  popup.js

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

function unpop( obj ) { obj.style.display = "none"; }
