<!-- // open links/contacts/credits window
var wndw_lcc = '';
function openWindow(e) {
	URL = e.href;
	if (!wndw_lcc.closed && wndw_lcc.location) wndw_lcc.location.href=URL;
	else wndw_lcc=window.open(URL,'wndw_lcc','toolbar=yes,location=no,directories=no,status=no,menubar=yes,resizable=no,width=768,height=502');
	if (wndw_lcc.focus) wndw_lcc.focus();
	return false;
}
// -->