<!--

function GetSupplier(strPath, controlName) {
	window.open(strPath + '?controlName=' + controlName,'popSupplier',"location=false,scrollbars,height=500,width=500");
}

function GetItem(strPath, controlName) {
	window.open(strPath + '?controlName=' + controlName,'popItem',"location=false,scrollbars,height=400,width=400");
}

function GetDate(strPath, controlName) {	
	//window.open(strPath + '?controlName=' + controlName,'popDate',"location=false,scrollbars,height=265,width=240,Left=300,top=200");
	// Harini 11/10/2002 - Fixed Problem . Minimise window and when calender button was clicked for second time, prev calender window should open.
	winObj = window.open(strPath + '?controlName=' + controlName,'popDate',"location=false,scrollbars,height=265,width=240,Left=300,top=200");
	winObj.focus()
}
// -->
