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