/* 
    This is a generic javascript function for loading
    popup windows for the IBS website.
    Example: 
    href="file.php?foo=bar" onclick="return popup(this, 'foobar', '530', '400', 'no');"
    -- Brandon T. Aug 2, 05
*/
function popup(mylink, windowname, w, h, scroll) {
	if (! window.focus)return true;
		var href;
	if (typeof(mylink) == 'string')
		href=mylink;
	else
		href=mylink.href;
		window.open(href, windowname, 'width='+w+',height='+h+',scrollbars='+scroll);
		return false;
}