<?php

$pageId = "rfp";
$seoTitle = "Places to Stay in Halifax Nova Scotia | The Prince George Hotel";
$seoMetaKeywords = "";
$seoMetaDescription = "The Prince George Hotel is one of the top places to stay in Halifax Nova Scotia. Submit your request for proposal for your next meeting in Halifax now.";

include "../includes/header.php";
?>

<div class="section-sub-page">
	<div class="res">
		<?php include "../includes/res.php"; ?>
	</div>
	<div class="hero-sub-page hero__<?php echo $pageId; ?>" style="background:url('/images/meetings-and-conferences/<?php echo $pageId; ?>/hero.jpg') no-repeat;" >
	</div>
</div>

<div class="section section-catering-your-wedding">
	<div class="container">
		<div class="section-ttl font-medium no-sub-title">
			<h1>Submit Your Meeting RFP at The Prince George Hotel Halifax</h1>
		</div>
		<div class="left-col">
			<p>When you're looking to hold your next corporate function or business meeting in downtown Halifax, we can help coordinate all the details to ensure everything runs smoothly from beginning to end.</p>
<!--
			<p class="text-center font-bold">
				Barbara Broome, CMP<br />
				Conference Services Manager <br />
				<a href="mailto:bbroome@princegeorgehotel.com">bbroome@princegeorgehotel.com</a><br />
				(902) 492-7807</p>
-->
			<p>Check availability for your meeting or event by providing us with a few details. Submit a Request for Proposal and one of our sales professionals will be in touch with you shortly.</p>
			
			<!-- wufoo form -->
		</div>
		<div class="float-right right-col right-menu">
			<?php include "../includes/sub-menu-meetings.php"; ?>
		</div>
		<div style="clear:both;"></div>
		<br><br><br><br>
	</div>
</div>
	<div id="green-meeting-info" style="display: none;">
    <p>For an additional <strong>$15 per person</strong> we can help make your next meeting a little greener.</p>	
    <ul class="check">
        <li>We donate $1 per person to the Point Pleasant Restoration Project on your behalf</li>
        <li>Morning and afternoon break featuring fair trade organic coffee &amp; tea, and juice (or soft drinks in the afternoon) served in carafes with choice of snack</li>
        <li>Unlimited local calls and access to internet, wirelessly or wired, in your meeting room and guestrooms</li>
        <li>Unlimited use of white boards with non-toxic markers</li>
        <li>Central supply of paper and pencils made from 100% recycled materials</li>
        <li>Cloth napkins and china containers for sugar, cream and condiments, rather than disposables</li>
        <li>Paper napkins, where desired, made from recycled materials</li>
        <li>Contact information should you wish to incorporate a volunteer or eco-friendly activity into your meeting agenda</li>
    </ul>
</div>

<?php
include "../includes/footer.php";

function is_secure($ar) {
	$reg = "/(Content-Type|Bcc|MIME-Version|Content-Transfer-Encoding)/i";
	if(!is_array($ar)) { return preg_match($reg,$ar);}
		$incoming = array_values_recursive($ar);
		foreach($incoming as $k=>$v) if(preg_match($reg,$v)) return false;
		return true;
	}
	
	function array_values_recursive($array) {
	$arrayValues = array();
	foreach ($array as $key=>$value) {
		if (is_scalar($value) || is_resource($value)) {
			$arrayValues[] = $value;
			$arrayValues[] = $key;
		}
		elseif (is_array($value)) {
			$arrayValues[] = $key;
			$arrayValues = array_merge($arrayValues, array_values_recursive($value));
		}
	}
	return $arrayValues;
}
?>