﻿// JScript File

showImageFullScreen = function(url) {
    params  = 'width='+screen.width;
     params += ', height='+screen.height;
     params += ', top=0, left=0'
     params += ', fullscreen=yes';

     newwin=window.open(url,'window', params);
};

showImageCenterFullScreen = function(url) {
     var width  = screen.width;
     var height = screen.height;
     var left   = (screen.width  - width)/2;
     var top    = (screen.height - height)/2;
     var params = 'width='+width+', height='+height;
     params += ', top='+top+', left='+left;
     params += ', directories=no';
     params += ', location=no';
     params += ', menubar=no';
     params += ', resizable=no';
     params += ', scrollbars=no';
     params += ', status=no';
     params += ', toolbar=no';
     newwin=window.open(url,'window', params);
};

showResponseMessage = function() {
    alert("Thank you for your request. An Insurecom representative will contact you shortly.");
};

