function openWindow(theURL)
{
	window.open(theURL, 'print', 'width=800, height=600, toolbar=no, scrollbars=yes, resizable=no, status=no');
	return false;
}

function scrollTo(target) {
	if($.browser.opera){
		$('html').animate({scrollTop: $(target).offset().top}, 'slow');
	} else $('html,body').animate({scrollTop: $(target).offset().top}, 'slow');
	return false;
}
