﻿<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;


function right(e) { 
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2)) 
return false; 
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) { 
alert("TS Milan Shoes (You can not right click on page.)"); 
return false; 
} 
return true; 
}
document.onmousedown=right; 
if (document.layers) window.captureEvents(Event.MOUSEDOWN); 
window.onmousedown=right; 
// -->
function rollin(el)
{	
  el.initstyle = el.style.cssText;
  el.style.cssText = "color : #000080; text-decoration : underline";
  el.style.cursor = "hand";
}

function rollout(el)
{
  el.style.cssText = el.initstyle;
}

