﻿$(document).ready(function() {

$('#contacts').ajaxForm({ 
        target: '.contact-form', 
        timeout: 2000,
        resetForm: true,
        success: function() { 
             $('.success').fadeIn('slow');
        } 
}); 

$('#order').ajaxForm({ 
        target: '.order-form', 
        timeout: 2000,
        resetForm: true,
        success: function() { 
             $('.success').fadeIn('slow');
        } 
}); 

});

function ShowImgWindow(title, src, width, height) {
	obj = window.open("", "", "scrollbars=0,dialog=0,minimizable=1,modal=1,width="+width+",height="+height+",resizable=0");
	obj.document.write("<html>");
	obj.document.write("<head>");
	obj.document.write("<title>"+title+"</title>");
	obj.document.write("</head>");
	obj.document.write("<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
	obj.document.write("<img src=\""+src+"\" />");
	obj.document.write("</body>");
	obj.document.write("</html>");
}

