// JavaScript Document

function popup(url,w,h,t,l) {
	w = (w==undefined) ? 424 : w;
	h = (h==undefined) ? 480 : h;
	t = (t==undefined) ? 100 : t;
	l = (l==undefined) ? 200 : l;
	thepopup = open(''+url, 'BLJpopup', 'width='+w+',height='+h+',top='+t+',left='+l+',scrollbars=no,resizable=yes,status=0');
	thepopup.focus();
}

