function showInfo(path) {
	
	var width = 480;
	var height = 570;
	
	if(path.indexOf('pop-brochure.html') > -1) {
		
		width = 565;
	
	} else if(path.indexOf('pop-enquiry.html') > -1) {
		
		width = 545;
	
	} else if(path.indexOf('-features.html') > -1) {
	
		width = 800;
	
	} else if(path.indexOf('-tech-specs.html') > -1) {
	
		width = 800;
	
	} else if(path.indexOf('pop-testdrive.html') > -1) {
		
		width = 565;
	
	}
		
	window.open(path, 'contacts', 'width='+width+'px, height='+height+'px, scrollbars=yes');	
		
}

