// JavaScript Document
// Home Page random splash generator
function randomPhotoSplashHomePage()
{
var splashImage=new Array()
//location of images in this array
splashImage[1]="photos/main1.jpg";
/* splashImage[2]="photos/main2.jpg";
splashImage[3]="photos/main3.jpg";
splashImage[4]="photos/main4.jpg";
splashImage[5]="photos/main5.jpg";
splashImage[6]="photos/main6.jpg";
splashImage[7]="photos/main7.jpg";
splashImage[8]="photos/main8.jpg";
*/
var getRan=Math.floor(Math.random()*splashImage.length);
if (getRan==0)
getRan=1;
document.write('');
}
// randomCaption splash generator
function randomCaptionSplash()
{
var splashCaption=new Array()
splashCaption[1]="A different approach to home inspection.";
splashCaption[2]="Bent Creek. You're in good hands.";
splashCaption[3]="Bent Creek. The rest is easy.";
splashCaption[4]="Bent Creek Inspection. Helping you to understand.";
splashCaption[5]="A different approach to home inspection.";
splashCaption[6]="Bent Creek Inspection. Clarity instead of confusion.";
splashCaption[7]="You've got Bent Creek on your side.";
/* splashCaption[7]="A different approach to home inspection.";*/
/*
splashCaption[7]="A different approach to home inspection."; splashCaption[1]="A different approach to home inspection. Bent Creek Inspection.";
splashCaption[2]="Bent Creek Home Inspection. A different approach.";
splashCaption[3]="Bent Creek Inspection. Clear. Complete. Competent.";
splashCaption[4]="A different approach to home inspection.";
splashCaption[6]="A different approach to home inspection.";
splashCaption[7]="Clear, complete, and competent. Bent Creek Inspection.";
splashCaption[8]="A different approach to home inspection.";
*/
var getRan=Math.floor(Math.random()*splashCaption.length);
if (getRan==0)
getRan=1;
document.write('
'+splashCaption[getRan]+'
');
}
function randomPhotoSplash()
{
var splashImage=new Array()
//location of images in this array
splashImage[1]="photos/picture1.jpg";
splashImage[2]="photos/picture2.jpg";
splashImage[3]="photos/picture3.jpg";
splashImage[4]="photos/picture4.jpg";
splashImage[5]="photos/picture5.jpg";
splashImage[6]="photos/picture6.jpg";
splashImage[7]="photos/picture7.jpg";
splashImage[8]="photos/picture8.jpg";
splashImage[9]="photos/picture9.jpg";
splashImage[10]="photos/picture10.jpg";
splashImage[11]="photos/picture11.jpg";
splashImage[12]="photos/picture12.jpg";
splashImage[13]="photos/picture13.jpg";
splashImage[14]="photos/picture14.jpg";
splashImage[15]="photos/picture15.jpg";
splashImage[16]="photos/picture16.jpg";
splashImage[17]="photos/picture17.jpg";
splashImage[18]="photos/picture18.jpg";
splashImage[19]="photos/picture19.jpg";
splashImage[20]="photos/picture20.jpg";
splashImage[21]="photos/picture21.jpg";
splashImage[22]="photos/picture22.jpg";
splashImage[23]="photos/picture23.jpg";
splashImage[24]="photos/picture24.jpg";
splashImage[25]="photos/picture25.jpg";
splashImage[26]="photos/picture26.jpg";
splashImage[27]="photos/picture27.jpg";
splashImage[28]="photos/picture28.jpg";
splashImage[29]="photos/picture29.jpg";
splashImage[30]="photos/picture30.jpg";
splashImage[31]="photos/picture31.jpg";
splashImage[32]="photos/picture32.jpg";
splashImage[33]="photos/picture33.jpg";
splashImage[34]="photos/picture34.jpg";
splashImage[35]="photos/picture35.jpg";
splashImage[36]="photos/picture36.jpg";
splashImage[37]="photos/picture37.jpg";
splashImage[38]="photos/picture38.jpg";
var getRan=Math.floor(Math.random()*splashImage.length);
if (getRan==0)
getRan=1;
document.write('');
}
//Client Log On
function validate(text1,text2,text3,text4)
{
if (text1!=text2 && text3!=text4)
load('client/' + text1 + "/" + text3 + '.pdf');
else
{
load('ClientPage.htm');
}
}
function load(url)
{
location.href = url;
}