// JavaScript Document

//--------------- Link to External Site ---------------//

function leavingSite(x) {	
	if (confirm("You are now leaving Cornerstone Credit Union's web site. The site you are going to is not owned or controlled by us. It may have a different privacy policy, cookie control and security standards. To remain at our site, click Cancel. To leave our site for the link you selected, click OK. Thank you for visiting our site.")) {
		window.open(x);
	}
}


//--------------- Random Image ---------------//

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '../support/images/general/header_01.jpg'
theImages[1] = '../support/images/general/header_02.jpg'
theImages[2] = '../support/images/general/header_03.jpg'
theImages[3] = '../support/images/general/header_04.jpg'
theImages[4] = '../support/images/general/header_05.jpg'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" class="banner">');
}

//--------------- Pop-Up ---------------//

function DoPopup(Page) {
	w = 550;
	h = 450;

	windowprops='width=' + w + ',height=' + h + ',location=no,scrollbars=yes,menubar=no,toolbar=no,resizable=yes';
	window_handle=window.open(Page,'Popup',windowprops);
											
	var xPos = (screen.availWidth-w) * 0.50;
	var yPos = (screen.availHeight-h) * 0.25;
										  
	window_handle.moveTo(xPos,yPos);
	window_handle.focus();
}