function inventoryDelete(compID,prodID,rID){
	var cid = compID;
	var pid = prodID;
	var rid = rID;
	var is_sure=window.confirm("Are you sure?");
	
	if (is_sure) {
		window.location='./inventoryEdit.asp?pid=' + pid + '&cid=' + cid + '&funct=2&sregion=' + rid + '';
	}
}
