var message="Function is Disable. All the contents & Graphics are \n\nCopyright © dynastyfurnitures.com"; // Message for the alert box

// Don't edit below!
//Site Designed, Developed & Maintained by sameersharma	

function click(e) {
					if (document.all) 
					{
						if (event.button == 2)
						{
							alert(message);
							return false;
						}
					}

				}
document.onmousedown=click;
// -->



//stop copy text
//Disable select-text script (IE4+, NS6+)- By Andy Scott
//Exclusive permission granted to Dynamic Drive to feature script
//Visit http://www.dynamicdrive.com for this script 
  
function disableselect(e){
return false
} 
  
function reEnable(){
return true
} 
  
//if IE4+
document.onselectstart=new Function ("return false") 
  
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}

//credits window

function openwindow(n,vh)
{
	if(vh==1){
	window.open("gallery.htm"+n,"mywindow","menubar=0,scrollbars=yes,scroll=yes,=resizable=no,width=338,height=400","valign=center");}
	else{
	window.open("credits.htm"+n,"mywindow","menubar=0,scrollbars=no,scroll=no,=resizable=no,width=338,height=391","valign=center");}

}