/**
 * 
 * @param link gives the destination url for the click on the div layer
 * @return
 * 
 * @copyright: 2009 Stephan Kasdorf
 *
 */

function player(url)
{
	playerwindow = window.open(url, "musikplayer","width=20,height=20,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
	playerwindow.focus();
}
