<!-- Begin

function blockError(){return true;}
window.onerror = blockError;

// -->

<!--
var windowURL,windowTitle,windowHeight,windowWidth,windowTop,windowLeft
windowURL="http://royaldestinations.com/gc1217/join.html"   // <---  Enter URL (Use Quotes)
windowTitle=""   // <---  Enter Window Title (Use Quotes)
windowHeight=screen.height-72  // <---  Enter Window Height
windowWidth=screen.width-12   // <---  Enter Window Width
windowTop=0
windowLeft=0

function openJoin()
{
var username = "gc1217";
if (username.indexOf("company") == -1)
{
var varStore = "";
varStore = varStore + ",width=" + windowWidth;
varStore = varStore + ",height=" + windowHeight;
varStore = varStore + ",resizable=" + "1";
varStore = varStore + ",scrollbars=" + "1";
varStore = varStore + ",menubar=" + "0";
varStore = varStore + ",toolbar=" + "0";
varStore = varStore + ",directories=" + "0";
varStore = varStore + ",location=" + "0";
varStore = varStore + ",status=" + "0";
varStore = varStore + ",left=" + windowLeft;
varStore = varStore + ",top=" + windowTop;
varStore = varStore + ",ScreenX=" + windowLeft;
varStore = varStore + ",ScreenY=" + windowTop;
window.open(windowURL,windowTitle,varStore);
}
else
{
window.location="http://royaldestinations.com/gc1217/rd_website_contact_form.html";
}
}
//-->