// shortcut

d=document;

// window dressing

d.status=d.title;

// generic popwin function

function pop_win(url,name,width,height){
	var t=(screen.height-height)/2;
	var l=((screen.width-width)/2);
	window.open(url,name,'width='+width+',height='+height+',top='+t+',left='+l+',location=0,status=0,scrollbars=0,toolbar=0,resizeable=no,noresize');
}

// popscroll function - adds a scrollbar

function pop_scroll(url,name,width,height){
	var t=(screen.height-height)/2;
	var l=(screen.width-width)/2;
	window.open(url,name,'width='+width+',height='+height+',top='+t+',left='+l+',location=0,status=0,scrollbars=1,toolbar=0,resizeable=no,noresize');
}