function tim_voken_open(){
	var lang = 'en'; // en or fr
	var path_to_swf ="http://www.timhortons.com/ca/flash/" // absolute path to swf with trailing slash
	if((document.URL).indexOf("timhortons.com")) // if its not on timhortons.com, open in a new page
		var targetWindow = "_self";
	else
		var targetWindow = "_blank";
	
	document.body.innerHTML += '<div id="timmies_voken" style="width:100%; position:absolute; top:150px;"><div style="margin: 0 auto; width:463px"><object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave /cabs/flash/swflash.cab#version=9,0,115,0" width="463" height="274" name="Timmies Voken"><param name="src" value="'+path_to_swf+'TIM039_Smile_Cookie_Voken_'+lang+'.swf"><param name=flashvars value="targetWindow='+targetWindow+'"><param name="wmode" value="transparent"><param name="allowScriptAccess" value="always"><embed src="'+path_to_swf+'TIM039_Smile_Cookie_Voken_'+lang+'.swf" flashvars="targetWindow='+targetWindow+'" allowScriptAccess="always" wmode="transparent" pluginspage="http://www.macromedia.com/shockwave/download/" width="463" height="274" name="Pixies"></embed></object></div></div>';		
}	
		
function tim_voken_close(){
	voken = 'timmies_voken';
  	if(typeof voken== 'string') 
  		voken=document.getElementById(voken);
	if(voken && voken.parentNode)
		voken.parentNode.removeChild(voken);
}


/* onload replacement */

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(tim_voken_open);