
/************************************************************
'*****  Copyright					White-Box-Solutions.	
'*****  Component											
'*****  Revision					1.00.00					
'*****														
'*****  Document Version			1.10.00					
'*****  Document Revision Date		13 Nov 2002				
'*****	Document revised by			MJC						
'*****														
'*****														
'*****			Revision History							
'*****														
'*****  Version 1.10.00	- 13 Nov 2002 						
'*****  Release white box									
'*****	All files updated with release date and time		
'*****														
'*****  Version 1.00.00										
'*****  Added new copyright block and revision history block
'*****														
'*****  Version 0.99.00										
'*****  Alpha Version 										
'***********************************************************/


//<!--

var clickmessage="Right click disabled on images!"

function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all||document.getElementById)
document.onmousedown=disableclick
else if (document.layers)
associateimages()

//-->


