
/***********************************************
* Disable select-text script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
* Modified here to exclude form tags properly and cross browser by jscheuer1
***********************************************/

//form tags to omit:
var omitformtags=["input", "textarea", "select"]

function disableselect(e){
cancelSelect();
for (i = 0; i < omitformtags.length; i++)
if (omitformtags[i]==(e.target.tagName.toLowerCase()))
return;
return false
}

function reEnable(){
return true
}

function noSelect(){
if (typeof document.onselectstart!="undefined"){
document.onselectstart=cancelSelect

}
else{

document.onmousedown=disableselect
 

}
}
 
 
 function cancelSelect(){
 //alert ( 'This Content is the copyright of Pensa Media. All rights are reserved.\n\nCopying and Re-producing any content from this website amounts to infringement of the International Copyright law.\n\nBE ORIGINAL!\n\n\nStop Word Piracy.' );
  return false
 }

 window.onload=noSelect;