
function openNewWin(url)
{
	var win = window.open(url, "","location=yes, toolbar=yes,scrollbars=yes,directories=yes,menubar=yes,status=yes,resizable=yes,width=900,height=500,left=10,top=10");
}


function openHelpWin(url)
{
	var win = window.open(url, "help_window","location=no, toolbar=no,scrollbars=yes,directories=no,menubar=no,status=yes,resizable=yes,width=400,height=300,left=10,top=10");
}


function calendarPicker(strField)
{
	window.open('../date_picker/DatePicker.aspx?field=' + strField, 'calendarPopup', 'width=250,height=190,resizable=yes');
}




