/**
/* @package		Dare to Manage v1.01
/* @copyright	Copyright (C) 2011 Dare to Design, http://www.daretodesign.nl. All rights reserved
**/

// EXPANDING LIST 

function showtr(id,img) {
	
	if( document.getElementById(id) != null ) {
	
		if( document.getElementById(id).style.display == 'none' && document.getElementById(id).style.visibility == 'hidden' ) {
			document.getElementById(id).style.display = '';
			document.getElementById(id).style.visibility = '';
			document.getElementById(img).src = '../cms_files/media/afbeeldingen/contract.gif';
		} else {
			document.getElementById(id).style.display = 'none';
			document.getElementById(id).style.visibility = 'hidden';
			document.getElementById(img).src = '../cms_files/media/afbeeldingen/expand.gif';
		}
		
	}

}

// POPUP
var win=null;

function NewWindow(mypage,myname,w,h) {
	
	myleft=(screen.width)?(screen.width-w)/2:100;
	mytop=(screen.height)?(screen.height-h)/2:100;

	settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,url=no";win=window.open(mypage,myname,settings);

	win.focus();
}

