1. I think the
authors of "4images" would probably be more capable to answer your question.
2. The "copyright whatever" alert is annoying and shows up twice. Furthermore, it doesn't protect your source-code from being viewed*.
3. Your site uses 3rd-party software, uses "LightScribe Logo and Technology" which is "© of Hewlett-Packard Development Company, L.P.",
as well as a template you didn't make yourself. And, lacking a community, there is absolutely no reason why I would want to go there.
You need to offer something original to get noticed.
4. This is the wrong forum. Should be in General Discussion (AFAIK, correct me if I'm wrong).
*) Proof:
Your nifty little JS:
Code: Select all
<!-- Copyright www.lightscribecovers.com - Used for demonstration -->
<script language="JavaScript" type="text/javascript">
<!--
function opendetailwindow() {
window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
}
function right(e) {
if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) {
alert('© Copyright by LightScribeCovers.com');
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3)) {
alert('© Copyright by LightScribeCovers.com');
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// -->
</script>