function AdjustKaraokeFactoryPageElement ()
{
	contentDivRightElem = document.getElementById ("contentDivRight");
	contentDivRightElem.style.width = screen.width - contentDivRightElem.offsetLeft - 30;

	headerDivElem = document.getElementById ("headerDiv");
	headerDivElem.style.margin = (screen.height <= 800 ? '5px 0px 5px 0px' : '25px 0px 25px 0px');

	contentDivElem = document.getElementById ("contentDiv");
	songLyricsHeight = screen.height - (screen.height / 4) - contentDivElem.offsetTop - 40;
	
	songDiv = document.getElementById ("song-div");
	if (songDiv != null)
		songDiv.style.height = songLyricsHeight;
		
	songLyrics = document.getElementById ("_songLyrics");
	if (songLyrics != null)
		songLyrics.style.height = songLyricsHeight;
		
	playerDivElem = document.getElementById ("player");
	playerDivElem.style.top = contentDivElem.offsetTop;
	
	contentDivRightElem.style.visibility = 'visible';
};

function AdjustKaraokePlayerPageElement ()
{
	headerDivElem = document.getElementById ("headerDiv");
	
	if (screen.height <= 800) {
		headerDivElem.style.margin = '5px 0px 5px 0px';
		ZoomTo (0);
	}
	else {
		headerDivElem.style.margin = '25px 0px 25px 0px';
		ZoomTo (2);
	}
	
	contentDivRightElem = document.getElementById ("contentDivRight");
	contentDivRightElem.style.visibility = 'visible';
};