// JavaScript Document
function popup(mylink,width,height,scrollbar){
	href=mylink.href;
	window.open(href, "", 'width='+width+',height='+height+',scrollbars='+scrollbar+'');
	return false;
	}
