 	
function soon () {
alert ('This Feature Is Coming Soon!');
}
function pwin(d,w,h,s,p) {
// p position, s = scrollbars
// 1 = top left, 2 = top right, 3 = bottom left, 4 = bottom right, 0 = center
if (d == "map") {
d = "http://maps.google.com/maps?q=1525%20S.%20Ocean%20Blvd%20North%20Myrtle%20Beach%20SC&spn=0.026855%2C0.043584"
}
if (p == 1) {
tx = 10; 
ty = 10;
}
else
if (p == 2) {
tx = (screen.width - (w+10));
ty = 0;
}
else
if (p == 3) {
tx = 10;
ty = (screen.height - (h+65));
}
else
if (p == 4) {
tx = tx = (screen.width - (w+10));
ty = (screen.height - (h+65));
}
else {
tx = (screen.width - w) / 2;
ty = (screen.height - h) / 2;
}
	 nWindow = window.open(d,"popup","width="+w+",height="+h+",top="+ty+",left="+tx+",menubar=no,toolbar=no,location=no,status=no, resizable=yes,titlebar=no,scrollbars="+s+",fullscreen=no");
	 nWindow.focus() 
}
function infowin(d,w,h) {
tx = (screen.width - w) / 2;
ty = (screen.height - h) / 2;

d = "http://" + d;

inWindow =
 window.open(d,"info","width="+w+",height="+h+",top="+ty+",left="+tx+",titlebar=0,resizable=1,status=0,menubar=0,toolbar=1,scrollbars=1,fullscreen=0");
	 inWindow.focus()
}
function couponwin()
    {
cwin=window.open("coupon.asp","imagewin","resizable=yes,scrollbars=yes,width=325,height=350,top=0,left=0");
cwin.focus();
    }
function regs()
    {
regwin=window.open("regulations.htm","regwin","resizable=yes,scrollbars=yes,width=450,height=400,top=0,left=0");
regwin.focus();
    }
function picwin(imagefile)
    {
imageloc = ("images.asp?i=" + imagefile);
imagewin=window.open(imageloc,"imagewin","resizable=yes,scrollbars=yes,width=520,height=450,top=0,left=0");
imagewin.focus();
    }
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
var EnableRightClick = 0;
if(isNS) 
document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
  if(EnableRightClick==1){ return true; }
  else {return false; }
}
function mousehandler(e){
  if(EnableRightClick==1){ return true; }
  var myevent = (isNS) ? e : event;
  var eventbutton = (isNS) ? myevent.which : myevent.button;
  if((eventbutton==2)||(eventbutton==3)) return false;
}
function keyhandler(e) {
  var myevent = (isNS) ? e : window.event;
  if (myevent.keyCode==96)
    EnableRightClick = 1;
  return;
}
//document.oncontextmenu = mischandler;
//document.onkeypress = keyhandler;
//document.onmousedown = mousehandler;
//document.onmouseup = mousehandler;
