// JavaScript Document
var message="ยินดีต้อนรับค่ะ ขอให้มีความสุขกับการเลือกซื้อสินค้ากับเรานะค่ะ / Welcome to our website, we hope you will have pleasure moment while shopping here";
function checkRestrictPage(){
	return (window.location.href.indexOf('link.html')<=0 && window.location.href.indexOf('catalog.html')<=0 && window.location.href.indexOf('catalog/')<=0 && window.location.href.indexOf('control/')<=0);
}
function rightClickIE(){
	if (event.button==2 && window.location.href.indexOf('link.html')<=0){
		//alert(message);
		return false;
	}
}
function rightClickNS(e){
	if((document.layers||document.getElementById&&!document.all) && (e.which==2||e.which==3) && window.location.href.indexOf('link.html')<=0){
		//alert(message);
		return false;
	}
}
if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=rightClickNS;
}
else if (document.all&&!document.getElementById){
	document.onmousedown=rightClickIE;
}
document.oncontextmenu=new Function("if(checkRestrictPage()){alert(message);return false;}")
