function writeObject(htmlToWrite)
{
   document.write(htmlToWrite);
}

function setCookie(state) {
	if(state=='off'){
	document.cookie = "sound=off";
	} else {
	document.cookie = "sound=on";
	}
}

function getCookie(name) {
  if (document.cookie){
    var cookies=document.cookie.split(";");
    for (var i=0; i<cookies.length; i++){
      var varName=(cookies[i].split("=")[0]);
      var varValue=(cookies[i].split("=")[1]);
      if (varName==name){
		return escape(varValue);
	  }
    }
  }
}

function popIt(url,name,width,height,scrollbars) {
specs="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scrollbars+",resizable=no,width="+width+",height="+height+",screenx=50,screeny=50,left=50,top=50"
window.open(url,name,specs);
}