function ShowHideNCO(div_id) {

	var el = document.getElementById('offer' + div_id);
	var btn = document.getElementById('btnimg' + div_id);

	//hide all 

	//show or hide selected section
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
		btn.src = 'http://www.parks.uk.com/images/revamp/newcar_offers/nc_open.jpg';
	} else {
		el.style.display = '';
		btn.src = 'http://www.parks.uk.com/images/revamp/newcar_offers/nc_close.jpg';
	}


}

function termswindow() { 
	window.open('http://www.parks.uk.com/terms/terms.html','motabterms','width=290,height=300,resizable=no,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,left=100,top=100,screenX=100,screenY=200'); 
} 


function branchwindow() { 
	window.open('http://www.parks.uk.com/cgi-bin/branches.pl','motabbranch','width=290,height=300,resizable=no,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,left=100,top=100,screenX=100,screenY=200'); 
} 





