function showScreenShot(content) {
	$.facebox(content);
	//from the detect.js file
	if (browser.isWindows) {
		$('#flash-div').hide();
	}
}
function closeFacebox() {
	//from the detect.js file
	if (browser.isWindows) {
		$('#flash-div').show();
	}
	$.facebox.close();
}
