//выбор таблицы стилей
function StyleCreate(style)
{
	var exp = new Date();
	var threeHourFromNow = exp.getTime() + (60*60*1000*3);
	exp.setTime (threeHourFromNow);
	document.cookie = "Style=" + style + ";path=/;expires=" + exp.toGMTString();
	location.reload();
}

 function ShowWin(furl,fh,fw,name)
  {
   window.open(furl, name, "toolbar=no,menubar=no,scrollbars=yes,resizable=no,height="+fh+",width="+fw+",top=100,left=100");
   return false;
  }

