/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.5.4
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2006 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/

// #############################################################################
// Initial setup

function copy(text2copy)
{
	if (window.clipboardData)
	{
		window.clipboardData.setData("Text", text2copy);
	}
	else
	{
		var flashcopier = 'flashcopier';
		if (!document.getElementById(flashcopier))
		{
			var divholder = document.createElement('div');
			divholder.id = flashcopier;
			document.body.appendChild(divholder);
		}
		
		document.getElementById(flashcopier).innerHTML = '';
		var divinfo = '<embed src="clientscript/clipboard.swf" FlashVars="clipboard='+(text2copy)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
		document.getElementById(flashcopier).innerHTML = divinfo;
	}
}

/*
// bbcode_code template
<script type="text/javascript" src="clientscript/clipboardCopy.js"></script>

<a name="code_$counter"></a>
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px; width:$stylevar[codeblockwidth];"><span class="smallfont" style="float:$stylevar[right];"><a href="#code_$counter" onClick="copy(document.getElementById('codecopy_$counter').innerHTML); this.style.color='purple';">Copia negli appunti</a></span>$vbphrase[code]:</div>
	<pre class="alt2" style="margin:0px; padding:$stylevar[cellpadding]px; border:1px inset; width:$stylevar[codeblockwidth]; height:{$blockheight}px; overflow:auto"><div dir="ltr" style="text-align:left;" id="codecopy_$counter">$code</div></pre>
</div>
*/
/*======================================================================*\
|| ####################################################################
|| # Downloaded: 19:23, Fri Mar 24th 2006
|| # CVS: $RCSfile: vbulletin_global.js,v $ - $Revision: 1.151 $
|| ####################################################################
\*======================================================================*/