// Title: Winston COllege
// Author: Parwinder Sadana
// This script will stop web users to copy our contents and images from Winston College's corporate website"

var popup="Sorry, You can not copy the contents.\n\nWinston College Copyright ©2003";
function noway(go) {
if (document.all) {
if (event.button == 2) {
alert(popup);
return false;
}
}
if (document.layers) {
if (go.which == 3) {
alert(popup);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=noway;
// --> </script>
// that's all folks

// To remove the copy command from internet explorer use the following coommand and insert into body tag"

// <body bgcolor="#FFFFFF" ondragstart="return false" onselectstart="return false"> 




