$(document).ready(function() {
	if ($('.poa').length) {
		
		$("#poa_warn").dialog({
			bgiframe: true,
			resizable: false,
			width: 550,
			height: 180,
			modal: true,
			autoOpen: false,
			overlay: {
				backgroundColor: '#000',
				opacity: 0.5
			}
		});
		
		$(".poa").click(function(){
			$("#poa_warn").dialog('option', {
				title: "Price On Application",
				buttons: {
					'Close': function(){
						$(this).dialog('close');
					}
				}
			}).text('Thank you for your interest in this product which is POA (price on application).  Please call your sales contact on 01379 649200 to confirm price and to place your order.');
			$("#poa_warn").dialog('open');
			return false;
		});
		
	}
});	
