<!--

//** No Right Click Code (BEGIN)
if (window.Event) 
  document.captureEvents(Event.MOUSEUP); 
 
function nocontextmenu()  
{
 event.cancelBubble = true
 event.returnValue = false;
 
 return false;
}
 
function norightclick(e) 
{
 if (window.Event) 
 {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  }
 
}
 
document.oncontextmenu = nocontextmenu;  
document.onmousedown = norightclick;
//** No Right Click Code (END)

function OpenLink(BagNo,Orientation)
{
	if (Orientation=='P')
		window.open("bags/bag_"+BagNo+".html","winp","toolbar=false,top=1,left=15,width=385,height=575,scrollbars=yes");
	else
	    if (Orientation=='L')
			window.open("bags/bag_"+BagNo+".html","winl","toolbar=false,top=1,left=15,width=497,height=463,scrollbars=yes");
		else
			window.open("bags/bag_"+BagNo+".html","winc","toolbar=false,top=1,left=15,width=497,height=575,scrollbars=yes");
}

function OpenFLink(FetishNo,Orientation)
{
	if (Orientation=='P')
		window.open("fetishes/fetish_"+FetishNo+".html","winp","toolbar=false,top=1,left=15,width=385,height=575,scrollbars=yes");
	else
	    if (Orientation=='L')
			window.open("fetishes/fetish_"+FetishNo+".html","winl","toolbar=false,top=1,left=15,width=497,height=463,scrollbars=yes");
		else
			window.open("fetishes/fetish_"+FetishNo+".html","winc","toolbar=false,top=1,left=15,width=497,height=575,scrollbars=yes");
}
//-->
