function PopInvoiceInfo(sInvoiceNo, sCompanyCode)
{
    var url = 'InvoiceInfo.aspx?INVOICE_NO='+ sInvoiceNo + '&COMPANY_CODE=' + sCompanyCode;
	var width  = 680;
	var height = 400;	
	var top = (screen.height-height) / 2;
	var	left = (screen.width-width) / 2;	
	var winpro = 'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + ',status=no,scrollbars=1,resizable=1';	
	
	parent.window.open(url,"InvoiceInfo",winpro);	
}

function PopCalendar(target)
{
	var url = 'Calendar.aspx?TARGET=' + target + '&DATE=' + document.getElementById(target).value	
	var width  = 205;
	var height = 200;	
	var top = (screen.height-height) / 2;
	var	left = (screen.width-width) / 2;			
	var winpro = 'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + ',status=no';	
	
	parent.window.open(url,"Calendar",winpro);		
}

//#PD017
function PopCalendarSetValue(target,setvalue)
{
	var url = 'Calendar.aspx?TARGET=' + target + '&DATE=' + document.getElementById(target).value +	'&SETFIELD='+ setvalue + '&SETVALUE=' + document.getElementById(setvalue).value
	var width  = 205;
	var height = 200;	
	var top = (screen.height-height) / 2;
	var	left = (screen.width-width) / 2;			
	var winpro = 'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + ',status=no';	
	
	parent.window.open(url,"Calendar",winpro);		
}


