$(document).ready(function() {

});

function PopUpWin(Url, X, S, R, W, H, T, L, Case){
 var Tx = ( Case == true ) ? ((screen.height / 2) - H / 2) : T;
 var Lx = ( Case == true ) ? ((screen.width  / 2) - W / 2) : L;
 var Pop = window.open(Url, X, 'status=1,scrollbars='+ S +',resizable='+ R +',width='+ W +',height='+ H +',top='+ Tx +',left='+ Lx);
 Pop.focus();
}

function FirstUpperCase(Field){
 Field.value = Field.value.charAt(0).toUpperCase() + Field.value.substring(1);
}

