// JavaScript Document
function initPagination(){
	var page = new PAGINATION_GINFO(this, document.forms["pagination_form"]);
	page.init();
}

function openListenLivePlayer(){
	var inner = window.open('listenlive_popup.php','','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=no,resizable=no,copyhistory=0,width=790,height=500');
}

function changePageFromListenLive(){
	window.opener.location.href = "listen_live.php";
}

function sendMailTo(name, company, domain) {
	locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
	window.location.replace(locationstring);
}

function sendAnnotatedMailTo(name, company, domain, subject) {
	locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain + "?subject=" + escape(subject);
	window.location.replace(locationstring);
}