function printLink(text, url, title, lose_focus){
	if (!title) {
		title = text;
	}
	if ((top.name=='cardinfo' || top.name=='help_page') && top.opener) {
		document.write("<a href='javascript:followLink("+'"'+url+'"'+");' onClick='top.opener.focus();");
		if (!lose_focus){
			document.write(" top.focus();");
		}
		document.write(" return true;' title='"+title+"'>"+text+"</a>");
	} else {
		document.write("<a href='"+url+"' title='"+title+"'>"+text+"</a>");
	}
}
function followLink(url){
	top.opener.location = url;
}

