<!--
function Winopen(url)
	{
	var	width=250;
	var	height=150;
	new_win = window.open(url, "new_win", 'width = '+width+' , height = '+height+',resizable=0,scrollbars=0,menubar=0,status=0, left='+Math.max(0,(screen.width-width)/2)+', top='+Math.max(0,(screen.height-height)/2));
	}

  function OpenWindow(url)
  {
  window.open(url);
  }

//--------------------------------------------------------------
var loc;

function newWindow(url,id,width,height)
{
if (loc!=id)
{
	zoom=window.open(url, id, 'width = '+width+' , height = '+height+',resizable=0,scrollbars=0,menubar=0,status=0, left='+Math.max(0,(screen.width-width)/2)+', top='+Math.max(0,(screen.height-height)/2))
	loc=id;
}
else 
{
	zoom.close();
	zoom=window.open(url, id, 'width = '+width+' , height = '+height+',resizable=0,scrollbars=0,menubar=0,status=0, left='+Math.max(0,(screen.width-width)/2)+', top='+Math.max(0,(screen.height-height)/2))
}
}

function kickFl(partN) {
	window.document.solution.TGotoLabel("/","part" + partN);
	window.document.solution.Play(); 
}
//-->
