// JavaScript Document
function GotoLink(myLink)
{
	frames["NavigatorFrame"].document.getElementById('urlfield').value = myLink;
	frames["NavigatorFrame"].document.getElementById('contentiFrame').src = myLink;
	frames["NavigatorFrame"].onPauseGame();
	top.document.getElementById('frameset3').rows="*,75%";
	frames["3DFrame"].DoFunction('HUD_ApplicationMenu.showMenu','','','');
}

function exec(URL, height){
   	GotoLink(URL);
	top.document.getElementById('frameset3').rows="*,"+height;
}



function disconnect(url){
	frames["AccountFrame"].document.src = url; 
}

function S3DInformation(text)
{
	frames["3DFrame"].document.getElementById('S3DInformation').innerHTML = text;
}


/*
function onChangePicture(link_){
		
	document.writeln('<a rel="boxed" href="'+link_+'" name="link" id="link">');
	document.writeln('<img src="'+link_+'" name="link_image"/>');
	document.writeln('</a>');
	//document.getElementById('link').href = link_;
	//document.getElementById('link_image').src = link_;
	//document.getElementById('link').click();
}*/