$('body').append("<div style='position:absolute;width:100%;top:0px;z-index:1001;'><div style='float:left;width:100%; top:0px; height:330px; background:#fff;z-index:999;display:none;' id='formcontainer'><div style='float:left;width:100%;height:20px;background:#e4e4e4;padding-top:2px; padding-bottom:2px; color:#49b5dd; font-weight:bold;text-align:center;'>CONTACT US</div><iframe src='scf2/form.php' id='iframe_contact' width='960' frameborder='0' height='310'></iframe></div><div style='float:left;width:100%; height:20px; top:0px; background:#302f30;z-index:999;' onclick=\"toggleform()\"></div><img onclick=\"toggleform()\" src='scf2/clienttab.png' style='float:left;margin-left:70%;display: block;text-align: left;color:#fff;font-weight: bold;width:114px;height:28px; cursor:pointer; text-decoration:none;font-family:Georgia, Times New Roman, Times, serif;font-size:12px;'/></div>");

function toggleform(){
	$('#formcontainer').slideToggle();
	Reload();
}


function Reload () { //Function used to reload the iframe after load for an accurate div position
var f = document.getElementById('iframe_contact');
f.src = f.src;
}

	$('#cnt_hover').click(function(e) {
		e.preventDefault();
		var id = '#dialog';
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
		if ($.browser.msie) {
			maskHeight=maskHeight-5;
			maskWidth=maskWidth-1;
		 }
		$('#mask').css({'width':maskWidth,'height':maskHeight});	
		$('#mask').fadeIn(1000);	
		$('#mask').fadeTo("slow",0.8);	
		var winH = $(window).height();
		var winW = $(window).width();
		$(id).css('top',  winH/2-$(id).height()/2);
		$(id).css('left', winW/2-$(id).width()/2);
		$(id).fadeIn(2000); 
		Reload();
	});
	
	$('.window .close').click(function (e) {
		e.preventDefault();
		$('#mask').hide();
		$('.window').hide();
	});		
	
	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
	});			
	
	closemodal=function(){
		$('#mask').hide();
		$('.window').hide();	
	}
