// JavaScript Document

function openFeedbackForm(page,user_id) {
		newWindow=window.open('feedback_form.php?page='+page+'&user='+user_id, 'InfoWindow', 'toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=400,height=400')
	}
	
function openPrivacyPage() {
		newWindow=window.open('privacy_policy.php', 'InfoWindow', 'toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=400,height=400')
	}
	
function openHelpPage(page) {
		newWindow=window.open('help.php?context='+page, 'InfoWindow', 'toolbar=no,location=yes,scrollbars=yes,resizable=yes,width=420,height=600')
	}
