﻿function popitup(url)
{
window.open (url,"pageName","locationbar=true,menubar=true,personalbar=true,scrollbars=yes,statusbar=false,toolbar=true,width=500,height=550,left=10,top=10");
}

function Datefield(fieldID)
{	
    jQuery("#"+fieldID).datepicker({
		showOn: 'button',
    	buttonImage: '../images/datepicker.png',
    	buttonImageOnly: true,
    	buttonText:'Select Date',
        dateFormat: 'mm/dd/yy',
        duration : 0, 
        minDate:new Date(1900,1-1,1),
        changeMonth: true,
        changeYear: true,
        onSelect: function() {jQuery("#"+fieldID).focus();}
        });
	
}

function doConfirm(r_strMessage) {
    return confirm(r_strMessage);
}
