
//courtesy of BoogieJack.com
//function killCopy(e){
//return false
//}
//function reEnable(){
//return true
//}
//document.onselectstart=new Function ("return false")
//if (window.sidebar){
//document.onmousedown=killCopy
//document.onclick=reEnable
//}

// JavaScript Document
//<script type="text/javascript">
//var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
//document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
///script>
//<script type="text/javascript">
//try {
//var pageTracker = _gat._getTracker("UA-8712519-3");
//pageTracker._trackPageview();
//} catch(err) {}
///script>


//......another code2 for non copy code....
  if ('0' == '0'){
	  var   omitformtags=["input",   "textarea",   "select"]   
	  omitformtags="|"+omitformtags.join("|")+"|";    
	  function   disableselect(e){   
	  if   (omitformtags.indexOf("|"+e.target.tagName.toLowerCase()+"|")==-1)   
	  return   false   
	  }      
	  function   reEnable(){   
	  return   true   
	  }     
	    
	  if   (typeof   document.onselectstart!="undefined"){   
	  	document.onselectstart=function(){return false;}   
	  }else{   
	  	document.onmousedown=disableselect   
	  	document.onmouseup=reEnable   
	  } 
  }  
