var cust_id, cust_name;
function customer_search(atrCustID, atrCustName, sessionId, companyId)
{
	cust_id = atrCustID;
	cust_name = atrCustName;
	var qString = '_session_='+sessionId;
	if(companyId){
		qString += '&compId='+companyId;
	}
	WindowFeature ="Resizable=Yes,ScrollBars=Yes,MenuBar=No,Directories=No,ToolBar=No,Location=No,Status=No,titlebar=No,dependent=yes,Width=600,ScreenX=0,ScreenY=0,Top=0,Left=0";
	this.newWindow =open("/common/search-customer.pl?"+qString,"viewnote",WindowFeature);
	newWindow.focus();
}

function set_customer(id,val){
	cust_id.value = id;
	cust_name.value = val;
}

function reseller_search(atrCustID, atrCustName, sessionId, companyId)
{
	cust_id = atrCustID;
	cust_name = atrCustName;
	var qString = '_session_='+sessionId;
	if(companyId){
		qString += '&compId='+companyId;
	}
	WindowFeature ="Resizable=Yes,ScrollBars=Yes,MenuBar=No,Directories=No,ToolBar=No,Location=No,Status=No,titlebar=No,dependent=yes,Width=600,ScreenX=0,ScreenY=0,Top=0,Left=0";
	this.newWindow =open("/common/search-reseller.pl?"+qString,"viewnote",WindowFeature);
	newWindow.focus();
}

function set_reseller(id,val){
	cust_id.value = id;
	cust_name.value = val;
}
