/*
    ============== (C) Copyright Relate.IT - All rights reserved ===============

    The copyright to the contents herein is the property of Relate.IT. The 
    contents may be used and/or copied only with the written permission of
    Relate.IT, or in accordance with the terms and conditions stipulated in 
    the agreement/contract under which the contents have been supplied.

    Internet:           			http://www.relate-it.eu
    
    ============================================================================
    $Id: form_dynamic.js,v 1.1 2006/06/20 12:22:49 nijssen Exp $ 
    ============================================================================
*/

	function togglePrices(form, elem) {
		if(elem == 'bu') {
			document.getElementById(form + 'rentContainer').style.display = 'none';
			document.getElementById(form + 'buyContainer').style.display = 'block';
		} else {
			document.getElementById(form + 'rentContainer').style.display = 'block';
			document.getElementById(form + 'buyContainer').style.display = 'none';
		}
	}

