$(function(){	
	var src = "http://www.provision.com.au/index.php?action=opinion";

	$(".modal1").click(function() {
	$.modal('<iframe src="' + src + '" height="620" width="400" style="border:0">', {
	closeHTML:"<a href='#'><img src='template_images/close_btn.gif' alt='close'/></a>",
	containerCss:{
		backgroundColor:"#fff",
		borderColor:"#fff",
		height:620,
		padding:0,
		width:400
	},
	overlayClose:true
});
});
	
	var src2 = "http://www.provision.com.au/templates/eye_anatomy.html";
	$(".modal2").click(function() {
	$.modal('<iframe src="' + src2 + '" height="720" width="1040" style="border:0">', {
	closeHTML:"<a href='#'><img src='template_images/close_btn.gif' alt='close'/></a>",
	containerCss:{
		backgroundColor:"#fff",
		borderColor:"#fff",
		height:720,
		padding:0,
		width:1040
	},
	overlayClose:true
});	
});

});