function _top5_generate_button(id, button) {
    var _top5_url = 'http://manage.top5inrealestate.com/media/index/id/' + id

    document.write('<a href="#" onclick="_top5_open_media_center(\'' + _top5_url + '\')"><img src="http://manage.top5inrealestate.com/img/buttons/' + button + '.jpg" border="0" /></a>');
}

function _top5_generate_link(title, url) {
    document.write('<a href="#" onclick="_top5_open_media_center(\'' + url + '\')">' + title + '</a>');
}

function _top5_open_media_center(url) {
    var width  = 1020;
	var height = 600;
	var left   = (screen.width  - width) / 2;
 	var top    = ((screen.height - height) / 2) * .5;
 	window.open(url, 'top5window', 'status=no, directories=no, menubar=no, resizable=yes, scrollbars=yes, toolbar=no, location=no, width=' + width + ', height=' + height + ', top=' + top + ', left=' + left);	
	if (window.focus) {top5window.focus()}
 	return false;
 		
}