/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 236 2010-03-09 06:04:40Z emartin24 $
 *
 */
 
 var state = 'none';

function ireki_datuak(id) {
		xajax_irekiperfil(id);
}

function erakutsi(layer) {
	if (state == 'block') {
		state = 'none';
	} else {
		state = 'block';
	}
	if (document.getElementById && !document.all) {
		doc = document.getElementById(layer);
		doc.style.display = state;
	}
}
