
function popup(thename) {
		window.open(thename, "", "width=415, height=415,scrollbars=0");
	}
	
function closeup(thename) {
		window.open(thename, "", "width=432, height=432,scrollbars=0");
	}
	
function american(thename) {
		window.open(thename, "", "width=500, height=350,scrollbars=0");
	}
	
function glass(thename) {
		window.open(thename, "", "width=450, height=400,scrollbars=0");
	}
	
function feature(thename, attributes) {
		window.open(thename, "", attributes);
	}

function appLaunch() {
		window.open("http://www.raynor.com/design/design-a-door_dealer.cfm","DesignADoor","width=740,height=500,scrollbars=0");
	}
	
if (document.images) {
	var img = new Array();
	//enter images into the array
	img[0] = 'http://www.raynor.com/images/header_gdb.gif';
	
	var im = new Array();
	
	for (var i = 0; i < img.length; i++) {
		im[i] = new Image();
		im[i].src = img[i];	
	}
}

function toggleImg(imageName, num) {
	if (document.images) {
		document.images[imageName].src = im[num].src;
	}
}
