// JavaScript Document

//Modal Window

//Feedback
   function openDialog2(html) {
	var win = new Window({className:"spread",title:"Enquiry Form", left:100, width:650, height:600, url: "form.php", showEffectOptions: {duration:1.5}})
	win.showCenter(); 
}  

//Video
   function openDialog3(html) {
	var win = new Window({className: "spread",title: "Video", top:70, left:100, width:650, height:500, url: "video.php", showEffectOptions: {duration:1.5}})
	win.showCenter(); 
}  

