function SwitchLanguage(sNewLNG)
{

	var sNewPage= sNewLNG + '/' + sPage + '.htm';
	sLanguage = sNewLNG.toLowerCase();

	document.getElementById('mnubiography').src = 'images/biography_'+sLanguage+'.gif';
	document.getElementById('mnuphotobook').src = 'images/photobook_'+sLanguage+'.gif';
	document.getElementById('mnudiscography').src = 'images/discography_'+sLanguage+'.gif';
	document.getElementById('mnuconcert').src = 'images/concertagenda_'+sLanguage+'.gif';
	document.getElementById('mnunews').src = 'images/news_'+sLanguage+'.gif';
	document.getElementById('mnucontact').src = 'images/contact_'+sLanguage+'.gif';
	document.getElementById('lblname').src = 'images/name_'+sLanguage+'.gif';
	

	switch (sNewLNG)
	{
	case 'en':
		document.getElementById('idSponsordBy').innerHTML = 'Sponsored by : <A HREF="http://www.pi-visions.com/" target=_blank>Pi-Visions</A> and <A HREF="http://www.parfumerija.com/" target=_blank>Parfumerija.com</A>';
		document.getElementById('oBV').innerHTML = '<FONT COLOR=#000000>Best viewed with Internet Explorer, resolution 1024x768';
		break
	case 'lt':
		document.getElementById('idSponsordBy').innerHTML = 'Internetinę svetainę remia : <A HREF="http://www.pi-visions.com/" target=_blank>Pi-Visions</A> ir <A HREF="http://www.parfumerija.com/" target=_blank>Parfumerija.com</A>';
		document.getElementById('oBV').innerHTML = '<FONT COLOR=#000000>Internetinė sveitainė geriausiai matoma naudojant: Internet Explorer, rezoliucija 1024x768';
		break
	}
	frames.iMain.location.href = sNewPage

}

function OpenPage(sShowPage)
{
	var sNewPage = sLanguage + "/" + sShowPage + ".htm";

	frames.iMain.location.href = sNewPage;
	
	sPage = sShowPage;
	document.getElementById('imgbackground').background = 'images/'+sPage+'.gif';

}



