<?php 

if (version_compare('5.1.3', phpversion()) > 0) {
	?>
		<html>
			<head>
				<title>Sorry, PHP 5.1.3 is required</title>
				<link rel="stylesheet" type="text/css" href="iv-admin/assets/css/imagevue.admin.css" media="all">
			</head>
			<body>
				<div class="page">
					<div class="pageContent" style="text-align: center">
						<div class="note warning" style="margin: 100px; display: inline-block">
							Sorry, Imagevue requires <b>PHP 5.1.3</b> to run. You have <strong>PHP <?php echo phpversion() ?></strong> installed.
						</div>
					</div>
				</div>
			</body>
		</html>
	<?php
	die();
}

include_once('imagevue.php');
