function showCompanyProfilePopup(country, companyId) {
	alt_text = "Click the button to view company profile on ITOlist.eu - catalogue of IT outsourcing companies from CEE";
	document.write("<img src=\"http://itolist.eu/img/ITOlist_member.gif\" title=\""+alt_text+"\" height=\"42\" width=\"83\" border=\"0\" style=\"cursor: pointer\" onclick=\"openCompanyProfilePopoup('"+country+"','"+companyId+"')\"/>");        	            
}
function openCompanyProfilePopoup(country, companyId) {
    var websitePath = "http://itolist.eu/ITOlist_member_profile";
    var path = websitePath + '/' + country + '/' + companyId;
    var params = "width=505,height=630,toolbar=no,location=no,directories=no,scrollbars=yes,status=no,menubar=no";
    window.open(path, '', params);
}
