
	var lyricsDiv = document.getElementById("protected_lyrics");
	var theLyrics = lyricsDiv.innerHTML;
	theLyrics = theLyrics.replace(/\n/ig, '');

	var iframeHTML = "<iframe id='iframe_lyrics' width='" + lyricsDiv.offsetWidth + "' height='" + lyricsDiv.offsetHeight + "' style='border: 0; padding: 0;'></iframe>";
	var tmpHeight = lyricsDiv.offsetHeight;

	lyricsDiv.innerHTML = iframeHTML;
	lyricsDiv.style.visibility = 'visible';

	var iframe_lyrics = document.getElementById("iframe_lyrics");

	var doc = iframe_lyrics.contentDocument;

	if (doc == undefined || doc == null)
		doc = iframe_lyrics.contentWindow.document;

	doc.open();

	doc.oncontextmenu = new Function('return false');
	doc.onmousedown = new Function('return false');
	doc.onclick = new Function('return false');
	doc.onselectstart = new Function('return false');
	doc.onselect = new Function('return false');

	var HTMLstart = '<html><head><style>html, body, textarea { border: 0; overflow: hidden; margin: 0; background-color: #FFFFFF; color: #000000; font: small sans-serif; text-align: center; font-size: 13px; }</style><style>@media print{body{display: none;}}</style><style>span.copyright {}</style></head><body>';
	var HTMLend = '</body></html>';

	doc.writeln(HTMLstart);
	doc.writeln(theLyrics);
	doc.writeln(HTMLend);

	doc.close();
