﻿jQuery.noConflict();
jQuery(document).ready(function() {
    jQuery("input[type='text'], input[type='password'], select, textarea").blur(function() {
    jQuery(this).css("border-color", "#90b554"); jQuery(this).css("background-color", "#fff");
    });
    jQuery("input[type='text'], input[type='password'], select,textarea").focus(function() {
    jQuery(this).css("border-color", "#728f2b"); jQuery(this).css("background-color", "#ebefe0");
    });
    jQuery("input[type='submit']").hover(
      function() {
    jQuery(this).css("background-color", "#7d735a");
      },
      function() {
      jQuery(this).css("background-color", "#728f2b");
      }
    );

});

var NewWin = null
function OpenWin(iWidth, iHeight, sURL) {iWidth = iWidth + 50; iHeight = iHeight + 100; if (navigator.appVersion.indexOf('MSIE 3') > -1 || parseInt(navigator.appVersion.substring(0, 1)) <= 2) { window.open(sURL); } else { if (NewWin == null) { NewWin = window.open(sURL, 'NewWindow', 'width=' + iWidth + ',height=' + iHeight + ',resizable,scrollbars'); } else { if (NewWin.closed) { NewWin = window.open(sURL, 'NewWindow', 'width=' + iWidth + ',height=' + iHeight + ',resizable,scrollbars'); } else { NewWin.location = sURL; NewWin.focus();}}}}
