/*function security()		{	alert('This action is not allowed')	return false        	}	
function diable_print_screen()
{//setInterval("window.clipboardData.clearData()",20);}document.oncontextmenu=securitydocument.ondragstart=securitydocument.onselectstart=securitydocument.onbeforeprint=securitywindow.onload=diable_print_screen*/
var message="Please Contact sales@munnilaltandoors.com"
function click(e)
	{
        if (navigator.appName=="Microsoft Internet Explorer") 
		  {
            if (event.ctrlKey || event.button == 2)
               {
                 alert(message);
                 return false;
               }
          }    
        
        if (navigator.appName=="Netscape")      
			{
			 
			 if (e.which == 3 || (e.modifiers && Event.CONTROL_MASK))
				{
				alert(message);
				return false;
				}
			}    
		
	}
if (navigator.appName=="Netscape")
    {
        document.captureEvents(Event.mousedown|Event.keydown);
        
    }
function selstart()
	{
	    alert(message)
		return false
		
	}
document.onmousedown=click;//registering the click function as the doc's eventhandler for the mousedown event.
document.onkeydown=click;
document.onselectstart=selstart