function swapimage(what, init) { 
	what.style.background = 'url(img/sidenavi.gif) no-repeat 0 ' + init + 'px'
}

function theflash(movie,width,height) 
{
	
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="'+width+'" height="'+height+'">\n');
    document.write('<param name="movie" value="'+movie+'">\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="menu" value="false">\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<embed src="'+movie+'" width="'+width+'" height="'+height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" wmode="transparent"></embed>\n');
    document.write('</object>\n');
	
}

function changeContactDiv(value) {
    document.getElementById('uk_enquiry_div').style.display = 'none';
    document.getElementById('int_enquiry_div').style.display = 'none';
    document.getElementById('ret_enquiry_div').style.display = 'none';
    switch(value) {
        case 'Area Franchise':
            document.getElementById('uk_enquiry_div').style.display = 'block';  
        break;
        case 'Master Franchise':
            document.getElementById('int_enquiry_div').style.display = 'block';
        break;
        case 'Retailer':
            document.getElementById('ret_enquiry_div').style.display = 'block';
        break;
    }
}

function showOther(value, divId) {
    if(value == 'Other') {
        document.getElementById(divId).style.display = 'block';
    } else {
        document.getElementById(divId).style.display = 'none';
    }
}

function apripopup(link,w,h){
	top.window.name='principale';
	if(window.pop) pop.close();
	t = (screen.height-h)/2;
	l = (screen.width-w)/2;
 	pop = window.open(link,'cv','toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+l+',top='+t+',width='+w+',height='+h);
 	pop.focus();
}