function popup_disclaimer() {

window.open('disclaimer.php','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=447,height=230,left=200,top=200');

}

function popup_partner(partnerPage) {
window.open
(partnerPage,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=447,height=525,left=200,top=200');
}

function popup_law() {

window.open('law.htm','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=447,height=230,left=200,top=200');

}

function popup_map() {

window.open('popup_map.php','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=740,height=635,left=50,top=50');

}

var gCurrentHighlight = 1;

function showNextHighlight() {
	var prevEl = $('sidebar_highlight_' + gCurrentHighlight);
	gCurrentHighlight++;
	var el = $('sidebar_highlight_' + gCurrentHighlight);
	if( !el ) {
		gCurrentHighlight = 1;
		el = $('sidebar_highlight_' + gCurrentHighlight);
	}
	Effect.Fade(prevEl);
	Effect.Appear(el);
}

Event.observe(window, 'load', function() {
	if( $('sidebar_highlight_1') ) {
		// we can haz highlights
		window.setInterval( showNextHighlight, 10000 );
	}
} );

