function showOverlib(name, width, height) {
	var pattern = /\b \b/ig;
	name = name.replace(pattern,'_');
	name = name.toLowerCase();
	var src = name;
	var html='Photo';
	html = '<img border="1" src="'+src+'" name="imagelib" alt="No preview available" width="'+width+'" height="'+height+'" />';
	return overlib(html, CAPTION, 'Photo', BELOW, RIGHT, WIDTH, width, BGCOLOR, '#003399');
}

function openPopupImage(url, width, height) {
	var image_browser = window.open(url, 'Vehicle', 'width=600, height=500, left=80, top=80, directories=0, location=0, menubar=0, scrollbars=no, status=0, toolbar=0, resizable=1');
	image_browser.focus();
}

function togglePromoDesc(value) {
	document.getElementById('promodesc').style.visibility = value;
}
