// JavaScript Document

function expand(param)
{
param.style.display=(param.style.display=="none")?"":"none";
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//function openwin(URL)
//{
//window.open(URL,'offsite','scrollbars=yes,width=800,height=800,left=300,x-screen=300,top=300,y-screen=300'); offsite.focus();
//}

function openwin(url) {
	newwindow=window.open(url,'name','height=800,width=880');
	if (window.focus) {newwindow.focus()}
	return false;
}

