var reindeer = new Object();

reindeer.small_path = 'http://tester2.synthasite.com/resources/reindeer.swf';
reindeer.small_width = '1920';
reindeer.small_height = '250';


function sizeup987(){
	document.getElementById('jcornerBig').style.top = '0px';
	document.getElementById('jcornerSmall').style.top = '-1000px';
}

function sizedown987(){
	document.getElementById("jcornerSmall").style.top = "0px";
	document.getElementById("jcornerBig").style.top = "-1000px";
}

reindeer.putObjects = function () {
// <jcornerSmall>
document.write('<div id="jcornerSmall" style="position:fixed;width:'+ reindeer.small_width +'px;height:'+ reindeer.small_height +'px;z-index:100;left:-1px;bottom:-15px;">');
// object
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="jcornerSmallObject" width="'+reindeer.small_width+'" height="'+reindeer.small_height+'">');
// object params
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ reindeer.small_path +'?'+ reindeer.small_params +'"/>');
document.write(' <param name="wmode" value="transparent" />');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+reindeer.small_params+'"/>');
// embed
document.write('<embed src="'+ reindeer.small_path + '?' + reindeer.small_params +'" name="jcornerSmallObject" wmode="transparent" quality="high" width="'+ reindeer.small_width +'" height="'+ reindeer.small_height +'" flashvars="'+ reindeer.small_params +'" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
document.write('</script>');
// </jcornerSmall>
// <jcornerBig>
document.write('<div id="jcornerBig" style="position:fixed;width:'+ reindeer.big_width +'px;height:'+ reindeer.big_height +'px;z-index:100;left:-1px;bottom:-15px;">');
// object
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="jcornerBigObject" width="'+ reindeer.big_width +'" height="'+ reindeer.big_height +'">');
// object params
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ reindeer.big_path +'?'+ reindeer.big_params +'"/>');
document.write(' <param name="wmode" value="transparent"/>');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+ reindeer.big_params +'"/>');
// embed
document.write('<embed src="'+ reindeer.big_path + '?' + reindeer.big_params +'" id="jcornerBigEmbed" name="jcornerBigObject" wmode="transparent" quality="high" width="'+ reindeer.big_width +'" height="'+ reindeer.big_height +'" flashvars="'+ reindeer.big_params +'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
// </jcornerBig>
setTimeout('document.getElementById("jcornerBig").style.top = "-1000px";',1000);
}
reindeer.putObjects();
