function openSoundArchive (fileARG1, fileARG2, captionARG) {

	image1 = new Image();
	image1.src = fileARG1;

	var win = window.open("", "win", "width=240, height=200");

	var MSIE=navigator.userAgent.indexOf("MSIE");
	var NETS=navigator.userAgent.indexOf("Netscape");
	var OPER=navigator.userAgent.indexOf("Opera");

	with (win.document) {
		open("text/html", "replace");
		write("<html><head><title>Radio Rame Sound Archives</title><link rel='stylesheet'  type='text/css' href='../css/sitestyle.css'/>");
	if((MSIE>-1) || (OPER>-1)) {
	write("<BGSOUND SRC=" + "'" + fileARG2 + "' LOOP='0'>");
	} else {
	write("<embed type='application/x-mplayer2' src=" + "'" + fileARG2 + "' autostart='True' showcontrols='false' showstatusbar='False' showdisplay='False' autorewind='True' width='0' height='0'></embed>");
	}

		write("</head><body>");
		write("<center>");
		write("<img src=" + "'" + image1.src + "'>");
		write("<p class='main'>" + captionARG + "</p>");
		write("</center>");
		write("</body></html>");
		win.focus();
		close();
	}
	return true;
}
