// JavaScript Document
// ImajaAudiroLink.js
// Copyright (C) 2009 Imaja - Greg Jalbert

function ImajaAudioPopupWindow(url) {
//	url = '../audio/popupwindow.html?audiofile=' + url + '&';
	var width = 450;
	var typicalscreenwidth = 1024;
// need to get the actual screen width, using 1024 as typical
	var left = typicalscreenwidth - width - 10;
	mywin = window.open(url,"remote", "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,width=" + width + ",height=100,left=" + left);
}

function ImajaAudioLink(thetitle, url) {
	var quotedurl = "'" + url + "'";
	document.write('<a href="javascript:ImajaAudioPopupWindow(' + 
					quotedurl + 
					');"><img src="../images/button-play-green.gif" width="18" height="17" hspace="4" border="0"></a>'
					); 

	document.write('<a href="' + url + '">' + thetitle + '</a><br>');	
}
