var win;

function openText(){
	setFlashChoiceMade(false);
	openChromeless("lo-fi/index.html",null);
	return false;
}
function openFlash(){
	setFlashChoiceMade(true);
	openChromeless("hi-fi/index.html",null);
	return false;
}
function openChromeless(strUrl, strName){
	var m = 32, sh = screen.height - m;
	var intHeight = sh;
	var intWidth = screen.width;
		
	try{
		if(win) win.focus();
	}catch(e){}
	win = window.open(strUrl,strName,"toolbar=no,menubar=no,location=no,resizable=yes,status=no,height=" + intHeight + ",width="+intWidth+",left=0,top=0");	
}
function openChromeless1(strUrl, strName){
	var m = 32, sh = screen.height - m;
	var intHeight = sh;
	var intWidth = screen.width;
		
	try{
		if(win) win.focus();
	}catch(e){}
	win = window.open(strUrl,strName,"toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,status=no,height=" + intHeight + ",width="+intWidth+",left=0,top=0");
	return false;
}
