var url=self.location;
var title=document.title;
function copyit(textit) {
if (window.clipboardData) {
window.clipboardData.setData("Text",textit);
}
	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="http://www.qeasoft.com/images/copy.swf" FlashVars="clipboard='+textit+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
document.getElementById(flashcopier).innerHTML = divinfo;
		}

}
urlurl = '<a href=\'' + url + '\' target=\'_blank\'>'+ titlejs +'</a>';

document.writeln("Text link code&nbsp;&nbsp;&nbsp;:<input type=\"text\" id=\"copy1\"  onClick=\"copyit(document.getElementById(\'copy1\').value);document.getElementById(\'copy1\').select();\" value=\""+url+"\" size=\"38\">");
document.writeln("<input type=\"button\" name=\"Submit\" onClick=\"copyit(document.getElementById(\'copy1\').value);document.getElementById(\'copy1\').select();\" value=\"Copy url\"><br \/>");
document.writeln("Hyper link code:<input type=\"text\" id=\"copy2\"  onClick=\"copyit(document.getElementById(\'copy2\').value);document.getElementById(\'copy2\').select();\" value=\""+urlurl+"\" size=\"38\">");
document.writeln("<input type=\"button\" name=\"Submit\" onClick=\"copyit(document.getElementById(\'copy2\').value);document.getElementById(\'copy2\').select();\" value=\"Copy url\">")
