//  Author:  Mitch Allen (c) 2003
// Program:  popup.js
// http://www.scriptable.com/blog/javascript/2005/03/popup-anything-in-javascript.html

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

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