

// Autosizes iFrame According to Content

function setIframeHeight(iframe) {
	iframe.style.height = '0px'; 

	// IE6+, Moz 1.0+, Safari
	var iframeDoc = (iframe.contentDocument) ? iframe.contentDocument 
		: (iframe.contentWindow) ? iframe.contentWindow.document
		: null;

	// Find height of internal page
	var height = (iframeDoc.documentElement.scrollHeight ? iframeDoc.documentElement.scrollHeight 
			: iframeDoc.body.scrollHeight ? iframeDoc.body.scrollHeight 
			: iframeDoc.body.offsetHeight); 

	// Change height of iFrame
	iframe.style.height = height + 'px'; 
}



// Lyrics Browser Popup

	function LyricsBrowser(dir_path) {
		 var url = dir_path;
		 window.open(url, "lyrics","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=500,height=650");           
	}


