<!--
var newWindow,newwin_url,newWindow2,newWindow3,html_split;
function clickhandler(target_html,popname,w,h,scroll,resize)
{
html_split=target_html.split("/")
target_html=html_split[(html_split.length)-1]
if(target_html=='slides.html' || target_html=='help.html')
	{
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		features =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize+''
	}
	else if(target_html=='site_nav.html')
	{
		features ='height='+h+',width='+w
	}
	if(typeof newWindow == 'undefined')
	{
		newWindow=window.open('',popname,features);
		if(newWindow.document.URL==''||newWindow.document.URL=='about:blank')
		{
			newWindow.location.href = target_html;
			newWindow.focus();
		}
		else
		{
			newwin_url=(newWindow.location.href).split("/")
			if(newwin_url[(newwin_url.length)-1] != target_html)
			{
				
				newWindow2=newWindow
				newWindow =window.open(target_html,popname,features);
			}
			newWindow.focus();
		}
	}
	else if(typeof newWindow!='undefined')
	{
		if(newWindow.closed==false)
		{
			newwin_url=(newWindow.location.href).split("/")
			if(newwin_url[(newwin_url.length)-1] != target_html)
			{
				newWindow2=newWindow
				newWindow =window.open(target_html,popname,features);	
			}
			newWindow.focus();
		}
		else
		{
			newWindow =window.open(target_html,popname,features);
			newWindow.focus();
		}
	}
}
//-->
