function linkToPopup(id,height,width) {
	thelink = document.getElementById(id);
	url = thelink.href;
	thelink.onclick = function() {
		window.open(url,'win_'+id,"height=" + height + ",width=" + width);
	};
	thelink.href = 'javascript:void(0);';
	return;
}
