function popRequest2(model) {
	url = "http://new.volvocars.com/contactforms/requestquote_v3.asp?model=" + model;
	myLightboxIframe.start(url, 480, 485);
	
	box = document.getElementById('lightboxContent');
	
	left = document.body.clientWidth / 2 + 190;
	
	closeImg = document.createElement('img');
	closeImg.style.position = "absolute";
	closeImg.style.top = "-26px";
	closeImg.style.left = "0px";
	closeImg.style.height = "26px";
	closeImg.style.width = "480px";
	closeImg.src = "http://new.volvocars.com/images/testdrive/quoteClose.jpg";
	closeImg.style.cursor = "pointer";
	closeImg.onclick = function() {
		myLightboxIframe.end();
	}
	document.getElementById('imageContainerIframe').appendChild(closeImg);	
}

function popTestDrive2(model) {
	url = "http://new.volvocars.com/contactforms/testdrive_v3.asp?model=" + model;
	myLightboxIframe.start(url, 480, 485);
	
	box = document.getElementById('lightboxContent');
	
	left = document.body.clientWidth / 2 + 190;
	
	closeImg = document.createElement('img');
	closeImg.style.position = "absolute";
	closeImg.style.top = "-26px";
	closeImg.style.left = "0px";
	closeImg.style.height = "26px";
	closeImg.style.width = "480px";
	closeImg.src = "http://new.volvocars.com/images/testdrive/testdriveClose.jpg";
	closeImg.style.cursor = "pointer";
	closeImg.onclick = function() {
		myLightboxIframe.end();
	}
	document.getElementById('imageContainerIframe').appendChild(closeImg);
}

curOnload = window.onload;
window.onload = function() {
	links = document.getElementsByTagName('a');
	for(i = 0; i < links.length; i++) {
		if(links[i].href.match(/requestquote/i) != null) {
			links[i].onclick = function() { popRequest2(this.href.toUpperCase().split("MODELS/")[1].split("/PAGES")[0]); return false;}
		}
		
		if(links[i].href.match(/testdrive/i) != null) {
			links[i].onclick = function() { popTestDrive2(this.href.toUpperCase().split("MODELS/")[1].split("/PAGES")[0]); return false;}
		}
	}

	if(curOnload) {
		curOnload();
	}
}
