// JavaScript Document


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

