// JavaScript Document
function copysrc(tag) {
thetag = document.getElementById(tag);
s = thetag.getAttribute('src');
if( window.clipboardData && clipboardData.setData ){
clipboardData.setData("Text", s); alert("Copied");
}else{alert("To copy image location, press left click, \nand select Copy Image Location");}
}