<!--
var message="Thanks for your interest in our  Web Site!";

function openwin (url, winname,width,height)
{
 var Win = window.open(url,winname,'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,status=no' );

//varwin=window.open(winpath, winname,  "status=1,scrollbars=1,resizable=1, width=wt, height=ht" );
}
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> 

