function preload(imgName,imgSrc){
eval(imgSrc+"= new Image()");
eval(imgSrc+".src='"+imgName+"'");

}

preload('images/popUp_id_michael.gif','popMichaelOff');
preload('images/popUp_id_michael_on.gif','popMichaelOn');

preload('images/popUp_id_peter.gif','popPeterOff');
preload('images/popUp_id_peter_on.gif','popPeterOn');

preload('images/popUp_id_igor.gif','popIgorOff');
preload('images/popUp_id_igor_on.gif','popIgorOn');

preload('images/popUp_id_Simmons.gif','popSimmonsOff');
preload('images/popUp_id_Simmons_on.gif','popSimmonsOn');

preload('images/vid_feat_2_buttonOff.gif','igorOff');
preload('images/vid_feat_2_buttonOn.gif','igorOn');

preload('images/vid_feat_1_buttonOff.gif','peterOff');
preload('images/vid_feat_1_buttonOn.gif','peterOn');

preload('images/vid_feat_3_buttonOff.gif','michaelOff');
preload('images/vid_feat_3_buttonOn.gif','michaelOn');

preload('images/testimonial_img_1b.gif','img1b');
preload('images/testimonial_img_1b_hl.gif','img1b_hl');

preload('images/testimonial_img_2b.gif','img2b');
preload('images/testimonial_img_2b_hl.gif','img2b_hl');

preload('images/testimonial_img_3b.gif','img3b');
preload('images/testimonial_img_3b_hl.gif','img3b_hl');

preload('images/testimonial_img_4b.gif','img4b');
preload('images/testimonial_img_4b_hl.gif','img4b_hl');

preload('images/testimonial_img_5b.gif','img5b');
preload('images/testimonial_img_5b_hl.gif','img5b_hl');

preload('images/testimonial_btn_back.gif','test_back');
preload('images/testimonial_btn_back_hl.gif','test_back_hl');

preload('images/testimonial_btn_readfull.gif','readfull');
preload('images/testimonial_btn_readfull_hl.gif','readfull_hl');

preload('images/peter_but_off.gif','cammisaOff');
preload('images/peter_but_on.gif','cammisaOn');

preload('images/igor_but_off.gif','mccarthyOff');
preload('images/igor_but_on.gif','mccarthyOn');

preload('images/milbrand_website.gif','millbrandWebsiteOff');
preload('images/milbrand_website_hl.gif','millbrandWebsiteOn');

preload('images/michael_but_off.gif','millbrandOff');
preload('images/michael_but_on.gif','millbrandOn');

preload('images/testimonials/btn/watchInterview_off.gif','watchInterview_off');
preload('images/testimonials/btn/watchInterview_on.gif','watchInterview_on');

preload('images/testimonials/btn/readInterview_off.gif','readInterview_off');
preload('images/testimonials/btn/readInterview_on.gif','readInterview_on');



function swap(theSlot,theSrc){
var theString="document."+theSlot+".src="+theSrc+".src";
eval(theString);
}

newWindow=false;


function helpWin(url){
if(!newWindow){
newWindow= window.open(url,"test","width=500,height=500,scrollbars=yes");
}
else if(newWindow && newWindow.closed){
newWindow= window.open(url,"test","width=500,height=500,scrollbars=yes");
}
else{

newWindow.focus();
}

}


function adminWin(url){
if(!newWindow){
newWindow= window.open(url,"test","width=500,height=380,scrollbars=yes");
}
else if(newWindow && newWindow.closed){
newWindow= window.open(url,"test","width=500,height=380,scrollbars=yes");
}
else{

newWindow.focus();
}

}


function popUp(mypage,myname,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;

	var settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	if (scroll == 2) {
		scroll = 0
		settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=false'
	}

	win = window.open(mypage,myname,settings)
}