window.defaultStatus="SourceAid";

var popUp, popUpScroll;
popUp=null;
popUpScroll=null;

function openIt(location,w,h) {
	var properties="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=" + (screen.availWidth-w-62) + ",top=40,width=" + w + ",height=" + h;
	if (popUp && !popUp.closed) { popUp.close(); }
	popUp=window.open(location,"openIt",properties);
	if (window.focus) { popUp.focus(); }
}

function openItScroll(location,w,h) {
	var properties="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=no,left=" + (screen.availWidth-w-62) + ",top=40,width=" + w + ",height=" + h;
	if (popUp && !popUp.closed) { popUp.close(); }
	popUp=window.open(location,"openIt",properties);
	if (window.focus) { popUp.focus(); }
}