/***************************************************************
  						kemmler-ortho.com 

  Description	:	Custom defined javascript functions
						  
  web			:	http://www.kemmler-ortho.com/
  version		:	05.01.2008
  
  copyright		:	(c) 2008 - Y Draw Creative Technologies
  license		:	Creative Commons (cc)
  
  author		:	Jeremy S. Ward

  **************************************************************/

// hides or makes an element visible
function toggle(elementID)
{
	var target1 = document.getElementById(elementID)
	if (target1.style.display == 'none') 
	{
		target1.style.display = 'block'
	} else {
		target1.style.display = 'none'
	}
}

// opens a new browser window
function openBrWindow(theURL,winName) 
{ 
	var features = 'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600';
	
	window.open(theURL,winName,features);
}

