// $Id$
//
// Javascript code used throughout the website.
//
// Author: Claudio Felber (claudio.felber@perron2.ch)
// Created: 2007-03-27
//
// Copyright (c) 2007, Perron2 GmbH, All Rights Reserved.
//

window.onload = function() {
	enhanceMP3Links();
}

/**
 * Modifies MP3 links to be opened in a popup window.
 */
function enhanceMP3Links() {
	var content = document.getElementById('content');
    var links = content.getElementsByTagName('a');
	
	for (var i = 0; i < links.length; i++) {
		var link = links[i];
		if (link.className == 'mp3') {
			link.path = link.href;
			link.href = 'javascript:void(0);';
			link.onclick = function() {
				window.open(this.path, 'MP3', 'width=250,height=50,status=no,locationbar=no,menubar=no,resizeable=no');
			}
		}
	}
}

