var ie = !!document.all;


/**
 * Set the specified text to the clipboard
 */
function clpSet(text)
{
	if(ie){
 		window.clipboardData.setData("Text",text);
	}
}