// define variable for site

// PROGRAM DETAILS

programTitle = 'Relapsed/Refractory Patient Teleconference';
programRID = '777';
programCode = 'LLS2010';


// BODY DETAILS
logoColor = '#ff0000'; // bg color of transparent LLS logo images
bodyBGType = 'solid'; // either gradient, solid or image
firstBGGradientColor = 'ffffff'; // ending color if bodyBGType is gradient
secondBGGradientColor = '352B70'; // starting color if bodyBGType is gradient
gradientDirection = 'vertical'; // either horizontal or vertical if bodyBGType is gradient 
bodyBGImage = 'images/lls_bg.png'; // url to body bg image if bodyBGType is image
bodyBGColor = '#ffffff';  //color if bodyBGType is solid

// Stage DETAILS

StageWidth = '850';
StageBGType = 'gradient'; // either gradient, solid or image
firstStageBGGradientColor = 'E2E1D6'; // ending color if StageBGType is gradient
secondStageBGGradientColor = '352B70'; // starting color if StageBGType is gradient
StageGradientDirection = 'vertical'; // either horizontal or vertical if StageBGType is gradient 
StageBGImage = 'images/lls_bg.png'; // url to body bg image if StageBGType is image
StageBGColor = '#ffffff';  //color if StageBGType is solid





// HEADER DETAILS
HeaderWidth = '750';
HeaderBGType = 'solid'; // either gradient, solid or image
firstHeaderBGGradientColor = 'ff0000'; // ending color if HeaderBGType is gradient
secondHeaderBGGradientColor = 'ffffff'; // starting color if HeaderBGType is gradient
HeaderGradientDirection = 'vertical'; // either horizontal or vertical if HeaderBGType is gradient 
HeaderBGImage = 'images/lls_bg.png'; // url to body bg image if HeaderBGType is image
HeaderBGColor = '#ffffff';  //color if HeaderBGType is solid

// HEADERRIGHT DETAILS
HeaderRightWidth = '4';
HeaderRightBGType = 'gradient'; // either gradient, solid or image
firstHeaderRightBGGradientColor = 'E2E1D6'; // ending color if HeaderBGType is gradient
secondHeaderRightBGGradientColor = '352B70'; // starting color if HeaderBGType is gradient
HeaderRightGradientDirection = 'horizontal'; // either horizontal or vertical if HeaderBGType is gradient 
HeaderRightBGImage = 'images/lls_bg.png'; // url to body bg image if HeaderBGType is image
HeaderRightBGColor = '#ffffff';  //color if HeaderBGType is solid

// TOPNAV DETAILS

TopnavWidth = '750';
TopnavBGType = 'solid'; // either gradient, solid or image
firstTopnavBGGradientColor = 'ff0000'; // ending color if TopnavBGType is gradient
secondTopnavBGGradientColor = 'ffffff'; // starting color if TopnavBGType is gradient
TopnavGradientDirection = 'vertical'; // either horizontal or vertical if TopnavBGType is gradient 
TopnavBGImage = 'images/lls_bg.png'; // url to body bg image if TopnavBGType is image
TopnavBGColor = '#ffffff';  //color if TopnavBGType is solid




// MAIN PAGE DETAILS 
MainWidth = '750';

MainBGType = 'gradient'; // either gradient, solid or image
firstMainBGGradientColor = 'ff0000'; // ending color if MainBGType is gradient
secondMainBGGradientColor = 'ffffff'; // starting color if MainBGType is gradient
MainGradientDirection = 'vertical'; // either horizontal or vertical if MainBGType is gradient 
MainBGImage = 'images/lls_bg.png'; // url to body bg image if MainBGType is image
MainBGColor = '';  //color if MainBGType is solid

// MainInner PAGE DETAILS 
MainInnerWidth = '750';

MainInnerBGType = 'solid'; // either gradient, solid or image
firstMainInnerBGGradientColor = 'ff0000'; // ending color if MainInnerBGType is gradient
secondMainInnerBGGradientColor = 'ffffff'; // starting color if MainInnerBGType is gradient
MainInnerGradientDirection = 'vertical'; // either horizontal or vertical if MainInnerBGType is gradient 
MainInnerBGImage = 'images/lls_bg.png'; // url to body bg image if MainInnerBGType is image
MainInnerBGColor = '#C3C07B';  //color if MainInnerBGType is solid


// FOOTER DETAILS
FooterWidth = '666';
FooterBGType = 'solid'; // either gradient, solid or image
firstFooterBGGradientColor = 'ff0000'; // ending color if FooterBGType is gradient
secondFooterBGGradientColor = 'ffffff'; // starting color if FooterBGType is gradient
FooterGradientDirection = 'vertical'; // either horizontal or vertical if FooterBGType is gradient 
FooterBGImage = 'images/lls_bg.png'; // url to body bg image if FooterBGType is image
FooterBGColor = 'blue';  //color if FooterBGType is solid

// SPEAKERS
speakerA = 'Speaker A';
speakerAInstitution = 'University or Institution';
speakerALocation = 'Location';
speakerAImage = 'images/blank_head.png';

speakerB = 'Speaker B';
speakerBInstitution = 'University or Institution';
speakerBLocation = 'Location';
speakerBImage = 'images/blank_head.png';

Moderator = 'Moderator';

// Longbar DETAILS
LongbarWidth = '666';
LongbarBGType = 'solid'; // either gradient, solid or image
firstLongbarBGGradientColor = 'ff0000'; // ending color if LongbarBGType is gradient
secondLongbarBGGradientColor = 'ffffff'; // starting color if LongbarBGType is gradient
LongbarGradientDirection = 'vertical'; // either horizontal or vertical if LongbarBGType is gradient 
LongbarBGImage = 'images/lls_bg.png'; // url to body bg image if LongbarBGType is image
LongbarBGColor = 'blue';  //color if LongbarBGType is solid
LongbarTextColor = 'white';  
LongbarTextFace = 'Verdana'; 
LongbarTextSize = '-1'; 

// Medclip DETAILS
MedclipWidth = '666';
MedclipBGType = 'solid'; // either gradient, solid or image
firstMedclipBGGradientColor = 'ff0000'; // ending color if MedclipBGType is gradient
secondMedclipBGGradientColor = 'ffffff'; // starting color if MedclipBGType is gradient
MedclipGradientDirection = 'vertical'; // either horizontal or vertical if MedclipBGType is gradient 
MedclipBGImage = 'images/lls_bg.png'; // url to body bg image if MedclipBGType is image
MedclipBGColor = 'white';  //color if MedclipBGType is solid


// automatic function below to generate random user ID using date
// ApplicantID is random number generator for the unique ApplicantID
getApplicantID = function ()
{
     var dateObject = new Date();
     ApplicantID = 'Z' + dateObject.getMonth() + '' + dateObject.getDate() + '' +  dateObject.getTime();
}
getApplicantID();
