﻿function imagePopUp(img) {
    html = html = "<html><head><title>Enlarged Image</title>" + "</head><body style=\"margin: 0px 0; text-align:center;\">" + "<a href=\"javascript:window.close();\"><IMG src='" + img + "' BORDER=0 NAME=image " + "onload='window.resizeTo(document.image. width,(document.image.height*1.3))'></a>" + "</body></html>"; popup = window.open('', 'image', 'toolbar=0,location=0, directories=0,menuBar=0, scrollbars=0,resizable=1'); popup.document.open(); popup.document.write(html); popup.document.close()
}

function ValidContact() {
    if ((contact('Name').value) && (contact('Company').value) && (contact('E-mail').value)) {
        // alert('true');
        contact.submit();
    } else {
        alert('Fill the star-marked fields');
    }
}

$(document).ready(function() {
    $('ul.sf-menu').superfish({
        delay: 0,
        autoArrows: false,
        opacity: 'show',
        speed: 'fast'
    });
});    