// JavaScript Document

function submitForm (formid) {
	if ($("#" + formid).validate().form()) {
		$('#' + formid).submit();
	}
}

function openFlippingbook (url) {
	new $.nyroModalManual({
		bgColor: '#000000',
		width: $(window).width()-32,
		height: $(window).height()-32,
		autoSizable: false,
		resizable: false,
		url: url
	});
}

