// JavaScript Document

function openShadow( p, c, w, h ){
	Shadowbox.open({
		player: p,
		content: c,
		height: h,
		width: w
	});
	return false;
}
	
function checkForm( formPath_first, pdfPath ){
		openShadow( 'iframe', formPath_first + '?h=' + pdfPath, 400, 500 );
		return false;
}